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
What are the types of assignment statements?
List the difference between a "copy constructor" and a "assignment operator"?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Explain a file operation in C with an example.
what are non standard function in c
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
How can I insert or delete a line (or record) in the middle of a file?
What is the use of sizeof () in c?
How is a null pointer different from a dangling pointer?
What is exit() function?
What is hash table in c?
what is the basis for selection of arrays or pointers as data structure in a program
i want to know the procedure of qualcomm for getting a job through offcampus
p*=(++q)++*--p when p=q=1 while(q<=6)
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)