what will be the output for the following main() { printf("hi" "hello"); }
what is ur strangth & weekness
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 self-referential structure in c programming?
What is New modifiers?
Why should I prototype a function?
What is the benefit of using const for declaring constants?
Under what circumstances does a name clash occur?
Why do we use c for the speed of light?
What are linked lists in c?
What are the advantages of c language?
How are structure passing and returning implemented?
How does #define work?
Why c is a procedural language?
When should the volatile modifier be used?