Advertisement
dllbridge

Untitled

Sep 30th, 2024 (edited)
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.97 KB | None | 0 0
  1.  
  2.  
  3.  
  4. #include   <stdio.h>
  5.  
  6.     float f = 3.14;
  7.     int   n =  123;
  8.     char  c =  'R';
  9.  
  10.  
  11. void foo();
  12.    
  13. ///////////////////////////////////////////////////////////////////
  14. int main()                                                       //
  15. {
  16.    
  17.  
  18.     foo();
  19.    
  20. }
  21.  
  22.  
  23.  
  24.    
  25.    
  26.    
  27.    ////////////////////////////////////////////////////////////////////  
  28. void foo()
  29. {
  30.      
  31.      printf("n = %d\n", n);
  32. }
  33.    
  34.    
  35.    
  36.    
  37.    
  38.    
  39.    
  40.    
  41.    
  42.  
  43.  
  44.  
  45. /*
  46.  
  47.  
  48. #include   <stdio.h>
  49.  
  50.  
  51.  
  52. ///////////////////////////////////////////////////////////////////
  53. int main()                                                       //
  54. {
  55.    
  56.     float f = 3.14;
  57.     int   n =  123;
  58.     char  c =  'R';
  59.    
  60.    
  61.   //  scanf("%d", &n);
  62.    
  63.     printf("n = %d\n", n);
  64.    
  65. }
  66. */
  67.  
  68.  
  69.  
  70.  
  71.  
  72. #include   <stdio.h>
  73.  
  74.  
  75.  
  76. ///////////////////////////////////////////////////////////////////
  77. int main()                                                       //
  78. {
  79.    
  80.     float f = 3.14;
  81.  
  82.     int   n =  123;
  83.    
  84.     char  c =  'R';
  85.    
  86.     char  sz[99] =  "____ = %d, %d, %s \n";
  87.                
  88.     printf(sz, n, 333, "SONY");    
  89.     printf("SONY = %.2f\n", f     );
  90.     printf("c    = %c  \n", c     );        
  91.     printf("c    = %d  \n", c     );
  92.     printf("c    = %s  \n", "SONY");
  93.     printf("c    = %s  \n", sz    );    
  94.            
  95. return 0;
  96. }
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117. /*
  118.  
  119. #include   <stdio.h>
  120.  
  121.  
  122.  
  123. ///////////////////////////////////////////////////////////////////
  124. int main()                                                       //
  125. {
  126.    
  127.     float f = 3.14;
  128.  
  129.     int   n =  123;
  130.    
  131.     char  c =  'R';
  132.    
  133.     char  sz[99] =  "Pictures";
  134.                
  135.     printf("SONY = %d, %d, %s \n", n, 333, "SONY");    
  136.     printf("SONY = %.2f\n", f     );
  137.     printf("c    = %c  \n", c     );        
  138.     printf("c    = %d  \n", c     );
  139.     printf("c    = %s  \n", "SONY");
  140.     printf("c    = %s  \n", sz    );    
  141.            
  142. return 0;
  143. }
  144.  
  145.  
  146. */
  147.  
  148.  
  149.  
  150.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement