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();
}
Answers were Sorted based on User's Feedback
What is the sizeof () operator?
What is a struct c#?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
to get a line of text and count the number of vowels in it
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
Differentiate between ordinary variable and pointer in c.
What is "Hungarian Notation"?
What are header files in c programming?
Can you please explain the difference between strcpy() and memcpy() function?
Is main is user defined function?