Answer Posted / sunil
Hi! Ranjita
Are you online?
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Should a function contain a return statement if it does not return a value?
Why is structure important for a child?
What is the difference between constant pointer and constant variable?
When is a null pointer used?
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 is memory leak in c?
What is a c token and types of c tokens?
Explain how can type-insensitive macros be created?
What is array of structure in c programming?
What is the difference between scanf and fscanf?
Why clrscr is used in c?
What are the 5 organizational structures?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is the benefit of using #define to declare a constant?
What is fflush() function?