Advertisement
Tahamina_Taha

subeen 2.7

Feb 6th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.41 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a;
  5.     a=1000;
  6.     printf("value of a i s: %d\n",a);
  7.     a=-65432;
  8.     printf("value of a i s: %d\n",a);//
  9.     a=28954;
  10.     printf("value of a i s: %d\n",a);
  11.     a=-100000;
  12.     printf("value of a i s: %d\n",a);//its not working for ints memory.
  13.     a=8743282776;
  14.     printf("value of a i s: %d\n",a);
  15.     a=-74926;
  16.     printf("value of a i s: %d",a);
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement