how does printf function work
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 |
1,1,5,17,61,217,?,?.
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
What is the difference between typeof(foo) and myFoo.GetType()?
Should I learn data structures in c or python?
Write programs for String Reversal & Palindrome check
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
What does it mean when the linker says that _end is undefined?
What is typedef example?
c program to arrange digits in a no in ascending and descending order
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
what is unsigened char and what is the difference from char
What is difference between static and global variable in c?