how many error occurs in C language ?
Answer Posted / swapnil
3 errors syntax and segment during compilation and logical
during runtime
| Is This Answer Correct ? | 32 Yes | 17 No |
Post New Answer View All Answers
How can you allocate arrays or structures bigger than 64K?
Does c have an equivalent to pascals with statement?
Which header file is used for clrscr?
Sir i need notes for structure,functions,pointers in c language can you help me please
Explain about the constants which help in debugging?
Explain pointer. What are function pointers in C?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is meant by high-order and low-order bytes?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is malloc return c?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What are the uses of null pointers?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Explain how does free() know explain how much memory to release?