Help!! how do you do this in turboC?
when i add a space it doesnt show the following output
example:
char name[50]
printf("enter your name: ); (user input example is: Boris Ilyanovich Karpov)
scanf("%s", &name);
printf("%s", name); (the output is just: Boris)
how do i get the following Ilyanovic and Karpov to show up with the Boris???
help... newbie here...
output should be: Boris Ilyanovich Karpov...
how do i do that...? can somebody show me a code