Is exit(status) truly equivalent to returning the same status from main?
No Answer is Posted For this Question
Be the First to Post Answer
What's the best way of making my program efficient?
What is getch?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
Tell me can the size of an array be declared at runtime?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What is strcmp in c?
What is malloc() function?