?
What will be the output of the following C code?
What will be the output of the following C code?
#include <stdio.h>
void main()
{
#define const int
const max = 32;
printf("%d", max);
}
#include <stdio.h>
void main()
{
#define const int
const max = 32;
printf("%d", max);
}
Join the Discussion
Login to post a comment or share your explanation.
Login