/*
求两个数的和
参数:
a:
b:
返回值:
作者:
时间:
版本:
*/
int sum(int a , int b){
return a+b;
}
int main(int argc, const char * argv[]) {
printf("1+2 = %d\n",1+2);
const int a = 1;
// int 8b = 2;
// int char = 10;
int b = 10;
int B = 11;
int 哈哈_text;
哈哈_text = 10;
int age = 29;
// a = 10;
// 1.接收用户输入
// 2.求和
// 3.输出
//'hello world"\
printf("\'hello world\"\\\n");
printf("%c\n",'\'');
int c;// 变量的声明
c = 10;
int d;
// d = 10;
// d = c;
// d = 1+2;
d = c * 2;