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 / kathiravan.l
1,20
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Why is sizeof () an operator and not a function?
What does #pragma once mean?
What are qualifiers and modifiers c?
How many types of errors are there in c language? Explain
Tell me can the size of an array be declared at runtime?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What is the purpose of 'register' keyword?
What are runtime error?
How do I convert a string to all upper or lower case?
What does emoji p mean?
What is the difference between test design and test case design?
Explain how do you print an address?