what do you mean by inline function in C?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between structure and union?
Is there a way to compare two structure variables?
What is the OOPs concept?
Are pointers really faster than arrays?
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
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
What's the best way of making my program efficient?
char ch=10;printf("%d",ch);what is the output
What is the scope of global variable in c?
What is bubble sort in c?
how to swap 2 numbers within a single statement?
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=