in reply to Re^4: If Statementin thread If Statement
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]