How are structure passing and returning implemented?


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

Post New Answer

More C Interview Questions

Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }

2 Answers   ADITI,


Where register variables are stored in c?

0 Answers  


Do you know what are the properties of union in c?

0 Answers  


What is the difference between ‘g’ and “g” in C?

1 Answers  


what is op? for(c=0;c=1000;c++) printf("%c",c);

21 Answers   Trigent,






What is the translation phases used in c language?

0 Answers  


How Many Header Files in c?

2 Answers   TCS,


What is uint8 in c?

0 Answers  


how should functions be apportioned among source files?

0 Answers  


a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

0 Answers  


Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;

5 Answers   ITCO, Wipro,


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  


Categories