Answer Posted / arun
syntax Error,
compile time Error,
runtime Error...
we cont consider logical Errors as Errors...
it is consider to be bugs...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is pivot in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is local and global variable in c?
What are the advantages of union?
What is the correct code to have following output in c using nested for loop?
Explain function?
What is the use of sizeof () in c?
What is c definition?
What is character constants?
What is call by reference in functions?
Can we access the array using a pointer in c language?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Which are low level languages?