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
write a program of bubble sort using pointer?
What is difference between Structure and Unions?
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
which is faster execution: loops or recursion?
What are preprocessor directives in c?
Explain what is dynamic data structure?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is an array in c?
what is the maximum limit of row and column of a matrix in c programming. in linux .
Meaning of () in c