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 |
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
A sample program using data structure? what is file handling?
printy(a=3,a=2)
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.
how to convert decimal to binary in c using while loop without using array
50 Answers Apple, Aptech, Arwen Tech, BCS, C2D Software, CEC,
What is the out put of this programme? int a,b,c,d; printf("Enter Number!\n"); scanf("%d",&a); while(a=!0) { printf("Enter numbers/n"); scanf("%d%d%d",&b,&c,&d); a=a*b*c*d; } printf("thanks!"); getche(); Entering numbers are a=1,b=2,c=3,d=4 b=3,c=4,d=-5 b=3,c=4,d=0
void main() { int i=7; printf("N= %*d",i,i); }
what is meant for variable not found?
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
Write a program to accept two strings of Odd lengths. Then take all odd characters from one string and even characters from the other and concatenate and produce a string.
#include"stdio.h" #include"conio.h" void main() { int a; printf("\n enter a number:"); scanf("%c\n"); getch(); }