Advertisement
Quisqueite

stack_1

Feb 18th, 2018
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <unistd.h>
  3. #include <stdio.h>
  4.  
  5. int main(int argc, char **argv)
  6. {
  7.   volatile int need_modificate;
  8.   char buffer[64];
  9.  
  10.   need_modificate = 0;
  11.   gets(buffer);
  12.  
  13.   if(need_modificate != 0) {
  14.       printf("Win! You have did it! \n");
  15.   } else {
  16.       printf("Nop, try again. \n");
  17.   }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement