What is the output of the program
#include<stdio.h>
#include<conio.h>
void main()
{0
int i,j=20;
clrscr();
for(i=1;i<3;i++)
{
printf("%d,",i);
continue;
printf("%d",j);
break;
}
getch();
}
Answer Posted / p.yamini
1,2 20
| Is This Answer Correct ? | 9 Yes | 6 No |
Post New Answer View All Answers
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is formal argument?
Why is c used in embedded systems?
Why doesnt this code work?
Explain what is the advantage of a random access file?
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is the difference between far and near ?
How can I determine whether a machines byte order is big-endian or little-endian?
what is different between auto and local static? why should we use local static?
What does int main () mean?
How do you print an address?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What is assignment operator?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?