C Program Aptitude | Placement Questions | Interview | Company Questions | C Program Problems | C Program Examples | C Program Questions
C programming
ReportQuestion
Comment on the output of this C code?
#include <stdio.h>
int main()
{
int ThisIsVariableName = 12;
int ThisIsVariablename = 14;
printf(“%d”, ThisIsVariablename);
return 0;
}
1. The program will print 12
2. The program will print 14
3.The program will have a runtime error
4.The program will cause a ...
Please briefly explain why you feel this question should be reported .
in progress
0
C
3 years
3 Answers
1164 views
1