What is array within structure?


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

Post New Answer

More C Interview Questions

how to sort two array of characters and make a new array of characters.

1 Answers   Accenture,


#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }

14 Answers   CDAC, GATE, NDS, TCS,


Why we write conio h in c?

0 Answers  


What are the differences between new and malloc in C?

0 Answers   Amazon,


What is the use of structure padding in c?

0 Answers  






int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


What is wrong with this program statement?

0 Answers  


Write a program to print “hello world” without using semicolon?

0 Answers  


Write a factorial program using C.

0 Answers   iNautix,


why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?

1 Answers  


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

0 Answers  


WHAT IS LOW LEVEL LANGUAGE?

2 Answers  


Categories