Explain what are run-time errors?
No Answer is Posted For this Question
Be the First to Post Answer
When we use void main and int main?
What are the 5 data types?
what do the 'c' and 'v' in argc and argv stand for?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
Is return a keyword in c?
Write a program to check palindrome number in c programming?
Explain Doubly Linked Lists?
How can I open a file so that other programs can update it at the same time?
Explain is it better to bitshift a value than to multiply by 2?
what is default constructor?
What is chain pointer in c?
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 ].