Answer Posted / revathy
I think it is 1004
But JITENDRA, why do you think it's FA0
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
i want to know the procedure of qualcomm for getting a job through offcampus
Explain what are multibyte characters?
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); } }
Explain the difference between null pointer and void pointer.
How can you invoke another program from within a C program?
Why we write conio h in c?
What are the types of bitwise operator?
What are the 3 types of structures?
How many types of operator or there in c?
where are auto variables stored? What are the characteristics of an auto variable?
what is the structure pointer?
Describe the order of precedence with regards to operators in C.
what are enumerations in C
how should functions be apportioned among source files?
What is the function of multilevel pointer in c?