Explain can the sizeof operator be used to tell the size of an array passed to a function?


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

Post New Answer

More C Interview Questions

#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,


Can the sizeof operator be used to tell the size of an array passed to a function?

0 Answers  


Software Interview Questions

1 Answers   CAT,


Explain what are compound statements?

0 Answers  


Why is main function so important?

0 Answers  


main() { int i; printf("%d",i^i); }

1 Answers  


Is fortran faster than c?

0 Answers  


Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

0 Answers   TCS,


What are type modifiers in c?

0 Answers  


input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure

4 Answers   IBM,


How many levels deep can include files be nested?

0 Answers  


Explain 'far' and 'near' pointers in c.

0 Answers  


Categories