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 |
What are header files and explain what are its uses in c programming?
What is the use of volatile?
swap two integer variables without using a third temporary variable?
What are the types of type specifiers?
Why isnt there a numbered, multi-level break statement to break out
How can I prevent another program from modifying part of a file that I am modifying?
Explain how does free() know explain how much memory to release?
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
why we need function pointers?
Is it possible to have a function as a parameter in another function?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
wats the diference btwen constant pointer and pointer to a constant.pls give examples.