Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- scope_of_variable.c
- Compiler must be set to 2011 ISO C language standard [-std=c11]
- You can find all my C programs at Dragan Milicev's pastebin:
- https://pastebin.com/u/dmilicev
- */
- #include <stdio.h>
- int main(void)
- {
- int i=10;
- for(int i=1; i<=2; i++)
- {
- printf("%d \n",i);
- }
- printf("%d \n",i);
- return 0;
- } // main()
RAW Paste Data
Copied