Tell about strtok & strstr functions
Answer Posted / shruti
The above answer is perfect...
Kudos..
well done..
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is a class c rental property?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is static memory allocation? Explain
Differentiate between static and dynamic modeling.
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Is printf a keyword?
Can a variable be both static and volatile in c?
Do you have any idea about the use of "auto" keyword?
What is context in c?
What are lookup tables in c?
Compare interpreters and compilers.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the sizeof () a pointer?
Is anything faster than c?
Tell me when would you use a pointer to a function?