Answer Posted / vignesh1988i
1)printf() is a built in library function which is defined
in <stdio.h> header file...
2) in printf(); function we can pass
1) entire string within "...." like :
eg: printf("my name is vignesh");
2) string with list of variables like :
eg: printf("%d%d" , i,j);
| |
first second
argument argument
3) like every function returns a value , PRINTF returns the
no. of characters which is inside "...".
eg: printf("%d",printf("hai how are u?"));
the output will be 14.....
4) printf() function is having direct contact with VDU
(video display unit) in the system..... so only it is
displayin every thing in the screen...........
thank u
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
Can I initialize unions?
What is meant by operator precedence?
Explain what is the heap?
Describe the order of precedence with regards to operators in C.
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Why do we need a structure?
how many errors in c explain deply
How can I write a function analogous to scanf?
What is c preprocessor mean?
Why can arithmetic operations not be performed on void pointers?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Explain how can you restore a redirected standard stream?
What is difference between structure and union in c programming?
What is string function in c?