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
What is wrong with this statement? Myname = 'robin';
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Does c have an equivalent to pascals with statement?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
How do you convert strings to numbers in C?
write a program in c language to print your bio-data on the screen by using functions.
What is the process to create increment and decrement stamen in c?
What is meant by initialization and how we initialize a variable?
What is a ternary operator in c?
Why calloc is better than malloc?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is c variable?
How can I invoke another program or command and trap its output?
c program to compute AREA under integral