Advertisement
dllbridge

Untitled

Nov 2nd, 2024
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.91 KB | None | 0 0
  1.  
  2. /*
  3. sprintf
  4. malloc
  5. realloc
  6. strlen
  7. strcpy
  8. strcat
  9. isalpha
  10. */
  11.  
  12. #include   <stdio.h>
  13. #include  <stdlib.h>
  14.  
  15.  
  16. int n = 71;
  17.  
  18. ////////////////////////////////////////////////////
  19. int main()                                        //
  20. {
  21.     int *pn = (int*)malloc(sizeof(int));
  22.    
  23.    *pn = 623;
  24.    
  25.     printf("*pn = %d\n", *pn);
  26.     printf(" pn = %d\n",  pn); 
  27.    
  28.     free(pn);
  29.    
  30.     pn = &n;
  31.     printf(" - - - - - - \n");
  32.     printf("*pn = %d\n", *pn);
  33.     printf(" pn = %d\n",  pn);     
  34. }
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61. /*
  62. #include  <stdio.h>
  63.  
  64.  
  65. void info(const char *psz);
  66.  
  67.  
  68. ////////////////////////////////////////////////////
  69. int main()                                        //
  70. {
  71.    
  72.     info("Vera Buraya");
  73. }
  74.  
  75.  
  76.  
  77. ////////////////////////////////////////////////////
  78. void info(const char *psz)
  79. {
  80.  
  81.    
  82.      printf("Course work for option %s, created by %s.\n", "4.3", psz);
  83. }
  84.  
  85.  
  86. */
  87.  
  88.  
  89.  
  90.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement