首页 > 编程语言 > 详细

C语言学习2018072701

时间:2018-07-25 15:58:54      阅读:230      评论:0      收藏:0      [点我收藏+]

#include<stdio.h>

extern int a,b;
extern int c;
extern float f;

int main()
{
int a,b;
int c;
float f;

a=10;
b=20;

c=a+b;
printf("value of c:%d \n");

f=70.0/3.0;
printf("value of f:%f \n");

return 0;
}

 

value of c:-2065103096
value of f:0.000000

C语言学习2018072701

原文:https://www.cnblogs.com/catmiyc/p/9366085.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!