Answer Posted / phani kumar s
yes they will support multiple arguments
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Difference between constant pointer and pointer to a constant.
What is a substring in c?
How can you tell whether a program was compiled using c versus c++?
Write the Program to reverse a string using pointers.
Can static variables be declared in a header file?
Who developed c language?
Multiply an Integer Number by 2 Without Using Multiplication Operator
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
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
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What are the advantages of using new operator as compared to the function malloc ()?
What is memory leak in c?
What happens if header file is included twice?
What are the advantages of using macro in c language?
Tell me the use of bit field in c language?