What is a pointer and how it is initialized?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of 'register' keyword in c language?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
Explain how can you be sure that a program follows the ansi c standard?
What is variable in c with example?
When should we use pointers in a c program?
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 LINKED LIST? How can you access the last element in a linked list?
Can you pass an entire structure to functions?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
write a program to display numbers from 1 to 10 and 10 to 1?
Is c object oriented?
How do you determine if a string is a palindrome?