how many error occurs in C language ?
Answer Posted / satya prakash
I think there are four error in c language symtex
error,logical error(sementex error) run time error, linking
error
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What is break in c?
Explain is it valid to address one element beyond the end of an array?
Is null valid for pointers to functions?
What is the use of getchar() function?
With the help of using classes, write a program to add two numbers.
Are global variables static in c?
What is stack in c?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Should I learn data structures in c or python?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Why do we use namespace feature?
What are identifiers c?
What is realloc in c?
Explain void pointer?