| Other C Interview Questions |
| |
| Question | Asked @ | Answers |
| |
| What should be keep precautions while using the recursion
method? | | 1 |
| C program to perform stack operation using singly linked list | | 3 |
| How would you write qsort? | | 1 |
| how to find string length wihtout using c function? | | 4 |
| if array a conatins 'n' elements and array b conatins 'n-1'
elements.array b has all element which are present in array
a but one element is missing in array b. find that
element. | Zycus-Infotech | 9 |
| what are the various memory handling mechanisms in C ? | HP | 3 |
| How do I access command-line arguments? | Wipro | 2 |
| which of the following go out of the loopo if expn 2
becoming false
a.while(expn 1){...if(expn 2)continue;}
b.while(!expn 1){if(expn 2)continue;...}
c.do{..if(expn 1)continue;..}while(expn 2);
d.while(!expn 2){if(expn 1)continue;..}
| TCS | 2 |
| #define d 10+10
main()
{
printf("%d",d*d);
} | | 3 |
| int main()
{
int *p=new int;
*p=10;
del p;
cout<<*p;
*p= 60;
cout<<*p;
}
what will be the output & why? | TCS | 4 |
| what is the use of a array in c | | 4 |
| what is the difference between <stdio.h> and "stdio.h" | Kanbay | 5 |
| main is a predefined or user define function
if user defined why?
if predefined whay? | TCS | 2 |
| how to find that no is int or float? | | 5 |
| what is compiler | | 5 |
| What is an object?
| | 3 |
| what is use#in c | | 3 |
| wats the diference btwen constant pointer and pointer to a
constant.pls give examples. | | 6 |
| What is Heap? | | 3 |
| what is difference between ++(*p) and (*p)++ | Accenture | 15 |
| |
| For more C Interview Questions Click Here |