start . me .
Directory path . lua , progress-to-build .

File : 01.c

#include <stdio.h>

int main(){
    
    float number1 = 3.14f;
    printf("number1 = %.2f \n", number1);
        
    char* string1 = "abcdef";
    printf("string1 = %s \n", string1);

}