C语言——Keywords&printf&scanf

来源:互联网 发布:vb进度条控件使用 编辑:程序博客网 时间:2024/05/16 14:05
ISO/ANSI C11 Keywords   44个

auto         extern    short            while     
break       float       signed        _Alignas  
case        for          sizeof         _Alignof
char         goto       static          _Atomic
const 
     if             struct          _Bool
continue  inline      switch         _Complex
default     int          typedef       _Generic
do            long       union          _Imaginary
double     register  unsigned    _Noreturn
else         restrict    void            _Static_assert

enum      return     volatile        _Thread_local

#include<stdio.h>


int main(){

int a,b;
scanf("%d",&a);
        printf("Now the value of a is %d\n\n",a);
        scanf("%d",&b);
printf("Now the value of b is %d\n\n",b);

a=b;

a=a*b;
        printf("Now the value of a is %d\n",a);
printf("the value of b is %d\n",b);


return 0;
}

原创粉丝点击