//
// main.c
// 1-【掌握】常量和变量
//
// Created by apple on 15/11/20.
// Copyright © 2015年 itcast. All rights reserved.
//
#include <stdio.h>
/*
求两个数的和
参数:
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;
/*
变量的属性:
1.数据类型
2.变量名
////////////////
3.变量的值
4.变量的地址
///////////////
*/
printf("size= %lu\n",sizeof(d));
printf("d = %d\n",d);
printf("d 地址: %p\n",&d);// 含义: 获取d变量的地址
,n33);
// printf("%d\n",n43);
age = 30;
return 0;
}
|
|