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

What is data types?

0 Answers  


What should malloc(0) do?

0 Answers  


Where register variables are stored in c?

0 Answers  


Describe dynamic data structure in c programming language?

0 Answers  


Explain how do you print only part of a string?

0 Answers  


how would a 4*3 array A[4][3] stored in Row Major Order?

0 Answers   HCL, Ignou,


typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none

0 Answers  


How can I invoke another program or command and trap its output?

0 Answers  


How to declare pointer variables?

0 Answers  


WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }

25 Answers  


Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.

1 Answers  


What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(“%d\n”,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none

2 Answers  


Categories