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 / ali
1,2,
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
Is it possible to initialize a variable at the time it was declared?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is c standard library?
Why is this loop always executing once?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Are pointers integers in c?
How do I get an accurate error status return from system on ms-dos?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
How can I use a preprocessorif expression to ?
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
Do pointers need to be initialized?
What is bin sh c?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What is memcpy() function?