What is the use of function in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between malloc() and realloc()?
What is the difference between printf and scanf )?
Process by which one bit pattern in to another by bit wise operation is?
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
Differentiate between declaring a variable and defining a variable?
What is structure packing ?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
Which is best linux os?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
write an algorithm and c program to add two 2x2 matrics
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
write program on arrays