What are the 3 types of structures?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
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(); }
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
What is volatile variable in c with example?
What is the size of a union variable?
what is the most appropriate way to write a multi-statement macro?
how we can say java is platform independent, while we require JVM for that particular Operating System?
How to convert decimal to binary in C using recursion??
why integer range between -327680to+32767
can v write main() { main(); } Is it true?