-
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int Eighteen = 18;
int eighteen = 15;
printf("%d", eighteen);
return 0;
}
-
- 18
- Compilation Error
- 15
- Runtime Error
- None of these
Correct Option: C
Variable names Eighteen and eighteen are both distinct as C is case sensitive.