Find out the output of the following program or error (if any).
#include<stdio.h>
#include<conio.h>
int main()
{
const int num=12;
++num;
printf("num=%d",num);
getch();
}
Reveal answer
Fill a bubble to check yourself
Find out the output of the following program or error (if any).
#include<stdio.h>
#include<conio.h>
int main()
{
const int num=12;
++num;
printf("num=%d",num);
getch();
}