What is main () in c language?
No Answer is Posted For this Question
Be the First to Post Answer
totally how much header files r in c language
What is this pointer in c plus plus?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
what about "char *(*(*a[])())();"
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
What is union in c?
How do you initialize pointer variables?
which of 'arrays' or 'pointers' are faster?
Are there any problems with performing mathematical operations on different variable types?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
What are preprocessor directives?
How can a process change an environment variable in its caller?