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
What is LINKED LIST? How can you access the last element in a linked list?
Is it better to bitshift a value than to multiply by 2?
What is static volatile in c?
Explain the use of bit fieild.
What tq means in chat?
Explain the advantages and disadvantages of macros.
What are c preprocessors?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is an operator?
What is dynamic variable in c?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
In C language what is a 'dangling pointer'?
how many errors in c explain deply
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What are the types of assignment statements?