Can the size of an array be declared at runtime?


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

Post New Answer

More C Interview Questions

what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these

2 Answers   IBM,


Program to find largest of three numbers without using comparsion operator?

3 Answers  


what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????

2 Answers   Apple,


what is the difference between malloc() and calloc() function?

1 Answers  


What is volatile

2 Answers  






What is #include called?

0 Answers  


What is meant by high-order and low-order bytes?

0 Answers  


How can I determine whether a machines byte order is big-endian or little-endian?

0 Answers  


Why ordinary variable store only one value  

0 Answers  


Do you know the difference between malloc() and calloc() function?

0 Answers  


Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above

0 Answers  


What are the different types of C instructions?

0 Answers   InterGraph,


Categories