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 |
Write down the difference between c. Loop and goto statement d. (!0) and (!1) e. (1= =! 1) and (1!=1) f. NULL and !NULL
WHAT WILL BE THE OUTPUT OF THE FOLLOWING QUESTION void main() { int x=4,y=3,z; z=x-- -y; printf("%d%d%d",x,y,z); }
who was the present cheif governor of reserve bank of india
6 Answers State Bank Of India SBI,
How to upgrade LOOP environment, I just mean, how can i make loop statement editable ? I just try some program using loop statement and checking it in multiple compilers. Every compiler showing different output, what's the wrong ? is it a compiler based problem, or loop based problem, tell me why ? and what will be the debugging process, for this kind of problem ?
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
void main() { int i=5; printf("%d",i+++++i); }
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.
write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;
Given an int variable n that has been initialized to a positive value and, in addition, int variables k and total that have already been declared, use a do...while loop to compute the sum of the cubes of the first n whole numbers, and store this value in total . Thus if n equals 4, your code should put 1*1*1 + 2*2*2 + 3*3*3 + 4*4*4 into total . Use no variables other than n , k , and total .
how tally is useful?
what is meant for variable not found?
Assume that the int variables i and j have been declared, and that n has been declared and initialized. Write code that causes a "triangle" of asterisks of size n to be output to the screen. Specifically, n lines should be printed out, the first consisting of a single asterisk, the second consisting of two asterisks, the third consistings of three, etc. The last line should consist of n asterisks. Thus, for example, if n has value 3, the output of your code should be * ** *** You should not output any space characters. Hint: Use a for loop nested inside another for loop.