Is there any restriction in how many arguments printf or
scanf function can take?
in which file in my c++ compiler i can see the code for
implementation of these two functions??
Answer Posted / s.velmurugan
Yes
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is a struct 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 is function prototype?
What is pass by reference in functions?
What is the use of static variable in c?
How does sizeof know array size?
What is the difference between break and continue?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
explain what is a newline escape sequence?
why return type of main is not necessary in linux
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the argument of a function in c?
Explain zero based addressing.
What is the purpose of void pointer?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions