in reply to •Re: Re^2: If Statementin thread If Statement
Makeshifts last the longest.
void MyFunction() { int a = 10; printf ("%d",a); { int b = 5; printf ("%d",b); } } [download]
void MyFunction() { int a = 10; printf ("%d",a); int b = 5; printf ("%d",b); } [download]