Answer Posted / vivek
arraging element in proper order
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
What are local variables c?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
What is realloc in c?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What is #line in c?
Can we declare a function inside a function in c?
Why is #define used?
Describe wild pointers in c?
What are the characteristics of arrays in c?
What is the purpose of the preprocessor directive error?
#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); }
What are the various types of control structures in programming?
Explain function?
What is 1d array in c?
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