Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

how to store a user input with spaces in c

#include <stdio.h>

int main(){
    char name[20];

    printf("Enter a name : ");
    scanf("%[^
]%*c", &name);

    printf("the name entered is: %s
", name);

return 0;
}
 
PREVIOUS NEXT
Tagged: #store #user #input #spaces
ADD COMMENT
Topic
Name
5+6 =