why use functions
a) writing functions avoids rewriting the same code over and over
b) using functions it becomes easier to write programs and keep track of what they are doing
c) a & b
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
What happens if you free a pointer twice?
What is c system32 taskhostw exe?
program to find the roots of a quardratic equation
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
What is the difference between constant pointer and pointer to a constant. Give examples.
Does c have an equivalent to pascals with statement?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Explain what are bus errors, memory faults, and core dumps?
What is size of union in c?
Explain two-dimensional array.