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.
Answer Posted / 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 |
Post New Answer View All Answers
Is c easy to learn?
When was c language developed?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What are the different types of pointers used in c language?
can we change the default calling convention in c if yes than how.........?
What happens if header file is included twice?
How many main () function we can have in a project?
How is pointer initialized in c?
Differentiate call by value and call by reference?
What is 2c dna?
What are the different types of linkage exist in c?
What are multidimensional arrays?
What does return 1 means in c?
What are header files in c?
How do you use a pointer to a function?