Answer Posted / nashiinformaticssolutions
A program behavior that is not defined by the C standard, e.g., dividing by zero.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Do you know the use of 'auto' keyword?
What is malloc calloc and realloc in c?
What is dynamic dispatch in c++?
Can you add pointers together? Why would you?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is the default value of local and global variables in c?
Explain 'bus error'?
Was 2000 a leap year?
Explain what is meant by 'bit masking'?
What functions are in conio h?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What is cohesion in c?
Here is a neat trick for checking whether two strings are equal
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
In C language what is a 'dangling pointer'?