โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main() {
int a,b;
scanf("%d enter value: %d",&a,&b); // a=4 b=5
printf("a=%d b=%d ",a,b);
return 0;
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
#include
int main() {
int a,b;
scanf("%d enter value: %d",&a,&b); // a=4 b=5
printf("a=%d b=%d ",a,b);
return 0;
}