How are Structure passing and returning implemented by the complier?


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

Post New Answer

More C Interview Questions

prog for 1st five prime numbers in 2^x - 1

0 Answers  


#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?

4 Answers   Infosys,


If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).

5 Answers   Microsoft, Motorola,


what is diference between return 0 and return NULL??

3 Answers  


what is pointer?

13 Answers   HCL, TCS,






in malloc and calloc which one is fast and why?

1 Answers  


a C prog to swap 2 no.s without using variables just an array?

5 Answers   TCS,


what is answer for perfect number????????????????

1 Answers  


what is a c-language.what is do.

4 Answers   HCL,


What is a C array and illustrate the how is it different from a list.

1 Answers   Amazon,


How to add two numbers without using semicolon at runtime

2 Answers  


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

0 Answers   Lovely Professional University,


Categories