what is syntax error?
Answers were Sorted based on User's Feedback
Answer / arun
syntax error is a compile time error. when a code does not
follow all the predefined syntax. then such error was occured
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / deepti khanna
synatx error is a compile type error. it will occur when
the programmer doesnot follow the standard rules or
syntax of programming.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / abhishek rajput
Its a compile time error
that occurs whenever
we does not follow the
predefined rules and
misplaces the symbols
like brackets, semi
colon, colon etc..
| Is This Answer Correct ? | 0 Yes | 0 No |
which typw of errors ? & how to solve it ?
What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).
class test { int a; public: test(int b):a(b){} void show(){ cout<<a; } }; void main() { test t1; test t2(5); t1.show(); t2.show(); } }
what is meant by linking error? how can i solve it? if there is a linking error " unable to open file 'cos.obj'? then what should i do?
loop1: { x=i<n?(i++):0; printf("%d",i); exit(x); continue; } Error- misplaced continue. Doubt-1.will the exit(x) be executed for all values of x 2.will this statement go out of the program.
Display this kind of output on screen. 1 0 1 1 0 1 3. Display this kind of output on screen. 1 1 0 1 0 1 4. Display this kind of output on screen. 1 1 0 1 0 1 5.Display this kind of output on screen. 1 2 3 4 5 6 7 8 9 10
what is run time error?
How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)
main() { char c; for(c='A';c<='Z';c++) getch(); }
void main() { int i=5; printf("%d",i+++++i); }
full c programming error question based problem
#include"stdio.h" #include"conio.h" void main() { int a; printf("\n enter a number:"); scanf("%c\n"); getch(); }