第三章
1. #include <stdio.h> int main(void) { int input; printf("Enter a value of char int ASCII:"); scanf("%d",&input); printf("You input value is %d,and char is %c\n",input,input); getchar(); return 0; } 2. #include <stdio.h> int main(void) { char ch = '\a'; printf("%c",ch); printf("Starled by the sudden sound,Sally shouted, \n"); printf("\"By the Great Pumpkin,what was that!\"\n"); getchar(); return 0; } 3. #include <stdio.h> int main(void) { float input; printf("Enter a floating-point value:"); scanf("%f",&input); printf("fixed-point notation: %f \n",input); printf("exponential notation: %f \n"