文章列表
有关字符,字符串的输入输出函数说明
摘要:字符数据的输入输出1.putchar 函数(字符输出函数) putchar 函数是字符输出函数, 其功能是在显示器上输出单个字符。其一般形式为:putchar(字符变量).2.getch……
1128题解(返回值为数组的情况)
摘要://本题方法并不是最简单的,只是为了练习返回值为数组的情况,以及有关数组和指针之间的内在联系#include <stdio.h>
#include <stdlib.h>
#include <str……
关于float,double变量的几点说明
摘要: 浮点数家族包括float,double,long double类型。通常,float以1个字32bit表示,7个有效位;double以2个字64bit表示,16个有效位;,long d……
1118(求助_已解决)
摘要://此代码在visual studio上运行没问题,为什么在此平台上运行报错
#include <stdio.h>
#include <stdlib.h>
#include <string.h>……
1048题解(读入回车问题)
摘要:#include <stdio.h>
int main()
{
int i = 0,count,num;
char s[1000];
scanf("%d",&count);
//以……