void main(void)
{
int i=10;
func();
printf(“i = %d”,i);
}
void func(void)
{
/* Your code goes here, change i to 100 */
}
// No global declarations allowed, you are allowed to add ur code only in the space provided
[b]I was thinking about declaring another local variable and prontf and exit the program[/b], but obviously, thats too easy.
]:)