#include<stdio.h>
#include<conio.h>
void main();
{
int 12 val= 10
printf("%d", val12);
getch();
}
find the error in the given C program
Answers
Answered by
0
Answer:
, is missing something here for
Answered by
0
Answer:
int val=10;
Explanation:
12 in this line will give syntax error.
Similar questions