Answer Posted / roshan
In a simple word.....
A pointer is a variable which is store the address of another variable.
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
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 ].
How can I change their mode to binary?
How is a macro different from a function?
Explain what is meant by 'bit masking'?
How many identifiers are there in c?
Explain how do you override a defined macro?
What is call by value in c?
Hi can anyone tell what is a start up code?
Which built-in library function can be used to match a patter from the string?
Difference between MAC vs. IP Addressing
What is local and global variable in c?
How can I read and write comma-delimited text?
Write a code to generate a series where the next element is the sum of last k terms.
What is c language used for?
What is the difference between text files and binary files?