Answer Posted / shalabh
This can be done by using malloc...if u have an integer
array then ...you can ask user the size..and then allocate
memory for integers...at the run time...using malloc()
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is the difference between text and binary i/o?
What will the preprocessor do for a program?
Differentiate between full, complete & perfect binary trees.
Can we increase size of array in c?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is a wrapper function in c?
how logic is used
Explain what are multibyte characters?
What is typedf?
why we wont use '&' sing in aceesing the string using scanf
What are register variables in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What are multidimensional arrays?
Why we not create function inside function.
How to find a missed value, if you want to store 100 values in a 99 sized array?