What is data structure in c programming?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

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 ].

0 Answers  


Is there any possibility to create customized header file with c programming language?

0 Answers  


What are the different pointer models in c?

4 Answers  


64/square(4)

1 Answers  


Explain Function Pointer?

0 Answers   Wipro,






WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?

1 Answers   IBM,


Explain how can I remove the trailing spaces from a string?

0 Answers  


pierrot's divisor program using c or c++ code

0 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?

1 Answers  


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

0 Answers  


What is operator promotion?

0 Answers  


Categories