-
What will be the output of the following C code?
#include <stdio.h>
void main()
{
#define count 55
count = 23;
printf("%d", count);
}
-
- 23
- Garbage value
- 55
- Compilation Error
- None of these
Correct Option: D
Compilation Error
main.c: In function ‘main’:
main.c:5:15: error: lvalue required as left operand of assignment
count = 23;