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
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
What is data type long in c?
How can you determine the maximum value that a numeric variable can hold?
What is pointers in c?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
What are the key features of C?
how to construct a simulator keeping the logical boolean gates in c
Is array name a pointer?
Why isnt any of this standardized in c?
What does *p++ do?
how many key words availabel in c a) 28 b) 31 c) 32