What is the difference between array and linked list in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can you tell whether two strings are the same?
What is the purpose of ftell?
What are the types of type qualifiers in c?
What are the preprocessors?
What is static function in c?
What is default value of global variable in c?
Explain what is meant by high-order and low-order bytes?
Write a program to identify if a given binary tree is balanced or not.
what is real time system?what is the differance between hard and soft real time systems
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
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 are linker error?