c-学习1
#1 基础知识 传送门
#2 编程环境 windows 与linux windows 不友好,采用wsl ubuntu
#3 案例
hello.c
#include <stdio.h>
int main(){
printf("Hello,world! \n");
return 0;
}
understand.c
#include <stdio.h>
#include "myh/myh.h"
int main(void){
printf("understanding now \n");
myint = 10;
printf("%dis myint value \n",myint);
return 0;
}