Answer Posted / praphulla
It automatically passes values to declared varibles.
ex: enum{red,green,blue}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Difference between strcpy() and memcpy() function?
What is static and volatile in c?
What is the symbol indicated the c-preprocessor?
Why does the call char scanf work?
What is extern keyword in c?
What is bin sh c?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is the difference between test design and test case design?
What is hashing in c?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Why c is called procedure oriented language?
What is NULL pointer?
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.