#‎include‬<stdio.h>
void main()
{
int i;
for(i=5;0;i++)
{
printf("%d",i);
}
}
Answer Posted / deepika agrawal
an error will be encountered in the begining of the program...
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain about C function prototype?
What is #include conio h?
What is the difference between the expression “++a” and “a++”?
What is difference between Structure and Unions?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What are the types of arrays in c?
What is keyword in c?
why do some people write if(0 == x) instead of if(x == 0)?
Why shouldn’t I start variable names with underscores?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Why c is called free form language?
What is a stream in c programming?
What is extern storage class in c?
How to write c functions that modify head pointer of a linked list?
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.