Answer Posted / naresh
printf is used to print the content to standard output.
this is a predefined function in C.It is included in stdio.h
library
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What extern c means?
What the advantages of using Unions?
What are the advantages of c preprocessor?
Is the exit() function same as the return statement? Explain.
What is scope and lifetime of a variable in c?
How can I do serial ("comm") port I/O?
Can the curly brackets { } be used to enclose a single line of code?
What is the mean of function?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
How to implement a packet in C
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is pointer to pointer in c with example?
How can I sort a linked list?
What will be the outcome of the following conditional statement if the value of variable s is 10?
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