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
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
differentiate built-in functions and user – defined functions.
what is the hexidecimal number of 4100?
Can we add pointers together?
write a programming in c language, 1 3 5 7 9 11
what is the difference between NULL('\0') and 0?
List some of the dynamic data structures in C?
What is main () in c language?
Explain indirection?
what is develop in c language
What is the use of keyword VOLATILE in C?
What is structure packing ?