macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration
Answer Posted / guest
d)type declaration
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What are the string functions? List some string functions available in c.
What is the difference between printf and scanf in c?
What is operator precedence?
What do you understand by normalization of pointers?
Explain union. What are its advantages?
Difference between constant pointer and pointer to a constant.
When would you use a pointer to a function?
Where is volatile variable stored?
Explain the use of fflush() function?
How can I pad a string to a known length?
What is identifier in c?
How can I convert a number to a string?
Explain the meaning of keyword 'extern' in a function declaration.
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.
Why is structure padding done in c?