Advertisement
mario_mos

porteevariablemario

Jul 21st, 2023
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.  
  6. int i = 1 ;
  7. {
  8. int i = 2;
  9. printf("La valeur de i est %d\n",i);
  10. }
  11.  
  12. {
  13. int i = 3;
  14. i = 4;
  15. printf("La valeur de i est %d\n",i);
  16. }
  17. i = 5;
  18.  
  19.  
  20. printf("La valeur de i est %d\n",i);
  21. return 0;
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement