JayAurabind

c_decl

Mar 9th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. extern int b;
  4.  
  5. int g = 99;
  6.  
  7. int main() {
  8.     int c = 0;
  9.     int d = 172;
  10.     c = b + 8;
  11.     printf("val of c = %d\n and d is %d, %d", c, d, g );
  12.     return c;
  13. }
Add Comment
Please, Sign In to add comment