Answer Posted / joel
array the method of storing multiple data on the same drive
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain how can you avoid including a header more than once?
#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); }
Explain how can you restore a redirected standard stream?
How do I use void main?
What does dm mean sexually?
What is the use of printf() and scanf() functions?
What are disadvantages of C language.
What is a macro?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is pass by value in c?
Who is the main contributor in designing the c language after dennis ritchie?
What is the difference between array and pointer?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Why pointers are used in c?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference