Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. void name(){
  3. char name[100],i;
  4. printf("please Enter Your Name:");
  5. scanf("%[^\n]",&name);
  6. printf("%s",name);
  7. }
  8.  
  9.  
  10.  
  11. int main()
  12. {
  13. name();
  14.  
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement