Hi Every one......... Please Any body give me the answer for
my question. Is it possible to print the word "PRINT F",
without using printf() statement in C-Language.
Answers were Sorted based on User's Feedback
Answer / rama krishna sidhartha
Yes..... By using puts() we can print it.
code:
puts("PRINT F");
By using fputs() also we can do it.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / nagesh
of..cource using cputs() and fputs().
both are output string to standard output.
| Is This Answer Correct ? | 4 Yes | 1 No |
Is c an object oriented programming language?
Can a function argument have default value?
write a program to display all prime numbers
What is meant by keywords in c?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What is character set?
Are there any problems with performing mathematical operations on different variable types?
What is the default value of local and global variables in c?
What is the difference between a free-standing and a hosted environment?
Tell me when is a void pointer used?
Is it better to bitshift a value than to multiply by 2?
what is the need for main function in c?