⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getsputs.c

📁 C源码集
💻 C
字号:
#include <stdio.h>int main(void){   char string[80];	int c;	printf("Input a string: ");	gets(string);	puts(string);	printf("The string input was: %s\n\n", string);	printf("And a letter: ");	c = getchar();	putchar(c);	printf("Your letter was %c which has an ASCII value of %i \n\n", c, c);	printf("More text please: ");	scanf("%s", &string);	printf("Read in by scanf, string is %s", string);		return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -