Advertisement
dllbridge

Untitled

Jul 25th, 2024
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.71 KB | None | 0 0
  1.  
  2.  
  3. #include   <stdio.h>
  4.  
  5.  
  6.    
  7.  
  8.  
  9.  
  10. ////////////////////////////////////////////////////
  11. int main()                                        //
  12. {
  13.    
  14.     int n = 22;
  15.    
  16.     scanf("%d", &n);
  17.    
  18.     printf("n = %d\n", n);
  19.  
  20. }
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. /*
  28.  
  29. #include   <stdio.h>
  30.  
  31. int n;
  32.    
  33. int foo();
  34.  
  35.  
  36. ////////////////////////////////////////////////////
  37. int main()                                        //
  38. {
  39.  
  40.  
  41.     printf("77 \n");
  42.     printf("%d \n", 77);   n = 243;
  43.     printf("n = %d\n", n);  
  44.    
  45.     foo();  
  46. }
  47.  
  48.  
  49. ////////////////////////////////////////////////////
  50. int foo()                                         //  
  51. {
  52.    
  53.    int n = 9911;
  54.    
  55.    printf("SONY\n");
  56.    
  57. return n;  
  58. }
  59.  
  60.  
  61. */
  62.  
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement