what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / vinoth
It will work fine no value or error will be displayed.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the acronym for ansi?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What is use of integral promotions in c?
What does %2f mean in c?
Explain the advantages and disadvantages of macros.
Why should I prototype a function?
How can I call a function with an argument list built up at run time?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is extern c used for?
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.
Where are the auto variables stored?
How can a program be made to print the line number where an error occurs?
Are the outer parentheses in return statements really optional?
What are the advantages and disadvantages of a heap?
State the difference between x3 and x[3].