码迷,mamicode.com
首页 > 编程语言 > 详细

C语言学习2018072701

时间:2018-07-25 16:22:44      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:bsp   c语言学习   语言   float   val   c语言   nbsp   a+b   int   

#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

标签:bsp   c语言学习   语言   float   val   c语言   nbsp   a+b   int   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!