What is difference between main and void main?
No Answer is Posted For this Question
Be the First to Post Answer
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
Can we declare function inside main?
How do I read the arrow keys? What about function keys?
which operator is known as dummy operator in c?
How to implement variable argument functions ?
Write a simple program to find the size of different basic data types in C.
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
Can static variables be declared in a header file?