12345678910



Question 1: What will be output if you will compile and execute the following c code?


#include<stdio.h>
int main(){
int a=sizeof(a);
a=modify(a);
printf("%d",a);
return 0;
}
int modify(int x){
int y=3;
_AX=x+y;
return;
}

1. 2
2. 3
3. 5
4. Garbage value