Skip to content

Instantly share code, notes, and snippets.

@anonur
Created June 26, 2019 10:48
Show Gist options
  • Save anonur/fd7c94da094ea60d53145b73d4402c16 to your computer and use it in GitHub Desktop.
Save anonur/fd7c94da094ea60d53145b73d4402c16 to your computer and use it in GitHub Desktop.
#include<stdio.h>
/* global variable declaration */
int g;
int main() {
/* local variable declaration */
int a,b;
/* actual initialization */
a = 10;
b = 20;
g = a + b;
printf("value of a = %d, b = %d and g = %d\n",a ,b, g);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment