how many argument we can pas in in a function
Answer Posted / muthukumar
depending upon requirements we can pass no of arguments in
functions
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does a pointer variable always consist of?
How can you be sure that a program follows the ANSI C standard?
How can you find the exact size of a data type in c?
What is the difference between new and malloc functions?
Why is this loop always executing once?
What is structure in c explain with example?
main() { printf("hello"); fork(); }
Explain enumerated types.
Why c is known as a mother language?
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
Differentiate call by value and call by reference?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
In C, What is the #line used for?
Explain the process of converting a Tree into a Binary Tree.
Explain what is the difference between text files and binary files?