Answer Posted / gg
Dear Satish...
Can U explain in brief... please...
Thank You
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what will be the output for the following main() { printf("hi" "hello"); }
Which is an example of a structural homology?
What are the general description for loop statement and available loop types in c?
explain what is a newline escape sequence?
Tell me what is null pointer in c?
What is the use of static variable in c?
What is the argument of a function in c?
What is this pointer in c plus plus?
Why dont c comments nest?
Why do some versions of toupper act strangely if given an upper-case letter?
How can I open a file so that other programs can update it at the same time?
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 ].
explain what are actual arguments?
What does double pointer mean in c?
Why doesnt the call scanf work?