Advertisement
Guest User

new

a guest
Jul 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int hw()
  5. {
  6.     printf("Hello World!");
  7.    
  8.     return(0);
  9. }
  10.  
  11. struct Pass
  12. {
  13.     const int SIZE = 30;
  14.     char Pass[SIZE] = {'\0'};
  15.    
  16.     fgets(Pass, SIZE, stdin);
  17. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement