int i =10
main()
{
int i =20,n;
for(n=0;n<=i;)
{
int i=10
i++;
}
printf("%d", i);
Answer Posted / vikramanj
int i=10[;]
main()
{
int i=20,n;
for(n=0;n<=i;)
{
int i=10[;]
i++;
}
printf("%d", i);
The syntax errs r specified in sq.braces..
if its corrected there s no terminating condition also..
so no o/p..
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is cohesion in c?
What are Macros? What are its advantages and disadvantages?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is union and structure in c?
Sir i need notes for structure,functions,pointers in c language can you help me please
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Explain how can I read and write comma-delimited text?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
Explain what are its uses in c programming?
How can I recover the file name given an open stream or file descriptor?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
how many errors in c explain deply
Explain the use of 'auto' keyword in c programming?