What is the difference between int main and void main?
Explain union.
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(); }
Is c# a good language?
Are c and c++ the same?
Code for calculating square root without using library function, of math.h
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
Explain what are the advantages and disadvantages of a heap?