What does c mean in basketball?
No Answer is Posted For this Question
Be the First to Post Answer
What is the mean of this statement:: if(int i=0 * i=9)
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
What 'lex' does?
What is the purpose of main() function?
Is fortran faster than c?
what is unsigened char and what is the difference from char
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
Why do we use & in c?
which one is highest Priority in c? a)=,b)+,c)++,d)==
What is LINKED LIST? How can you access the last element in a linked list?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is memmove?