#include <stdio.h> int main() { char me[20]; printf("What is your name?"); scanf("%s",&me); printf("Darn glad to meet you, %s!\n",me); return(0); }
What is your name?1 Darn glad to meet you, 1!
3.3.String Read | ||||
3.3.1. | Read string from keyboard | |||
3.3.2. | Reading Strings | |||
3.3.3. | Ask the user for his first and last name. |