Answer Posted / saran
The inserting player or disk is also in round shape.. may if it is square.. the cd or dvd also be square..
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the difference between array_name and &array_name?
What is pointer to pointer in c with example?
What is a null string in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
write a progrmm in c language take user interface generate table using for loop?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What is queue in c?
Write a simple code fragment that will check if a number is positive or negative.
What is function prototype in c language?
Can we declare function inside main?
What is logical error?
Explain what is the general form of a c program?
How can I automatically locate a programs configuration files in the same directory as the executable?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Difference between macros and inline functions? Can a function be forced as inline?