Answer Posted / dev
array is a reference variable which stores similar type of data
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the c language function prototype?
What is a #include preprocessor?
What does typeof return in c?
Explain setjmp()?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What does double pointer mean in c?
What are 'near' and 'far' pointers?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is the benefit of using an enum rather than a #define constant?
Explain the Difference between the New and Malloc keyword.
Write a program to print factorial of given number using recursion?
What is pass by reference in functions?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Does sprintf put null character?
What is a program flowchart?