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
Can you pass an entire structure to functions?
why do we use pointer instead directly acessing the data?
Which is better pointer or array?
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
What are the different types of constants?
What are valid signatures for the Main function?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
How can I determine whether a machines byte order is big-endian or little-endian?
Explain the properties of union.
Can you please explain the difference between malloc() and calloc() function?
How #define works?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }