A
Q. What is the output of C program?
Code:
#include <stdio.h>
// Assume base address of "GeeksQuiz" to be 1000
int main()
{
printf(5 + "GeeksQuiz");
return 0;
}
// Assume base address of "GeeksQuiz" to be 1000
int main()
{
printf(5 + "GeeksQuiz");
return 0;
}
- Correct Answer - Option(B)
- Views: 21
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.