Answer Posted / rajnish
to clear input buffer
| Is This Answer Correct ? | 70 Yes | 10 No |
Post New Answer View All Answers
Why is c used in embedded systems?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is conio h in c?
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); } }
What are 'near' and 'far' pointers?
Explain the properties of union. What is the size of a union variable
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is array in c with example?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Explain what is the benefit of using const for declaring constants?
What are the 3 types of structures?
Is array name a pointer?
What are the disadvantages of c language?
Explain how do I determine whether a character is numeric, alphabetic, and so on?