Do you know the use of 'auto' keyword?
No Answer is Posted For this Question
Be the First to Post Answer
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
How to write a program for swapping two strings without using 3rd variable and without using string functions.
main() { int i=400,j=300; printf("%d..%d"); }
What is a pointer and how it is initialized?
How can I access an I o board directly?
What is a far pointer in c?
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.
What are the advantages of union?
show how link list can be used to repersent the following polynomial i) 5x+2
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Simplify the program segment if X = B then C ← true else C ← false
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?