फ़ंक्शंस के साथ C प्रोग्राम का आउटपुट क्या है?
What is the output of C program with functions?
Iint main() {
int a = 0;
printf(‘AJAY”);
return 1;
printf(“VIJAY”);
return 1;
}
A)
B)
C)
D)
Explanation:
The program prints "AJAY" and then exits after the first return 1;
. The second printf("VIJAY");
is never executed.
Output: (B) AJAY.