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 is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
What is this pointer in c plus plus?
What is the difference between array and pointer in c?
What are the concepts introduced in OOPs?
how 2 compile & execute c program with out using editor?
How can I increase the allowable number of simultaneously open files?
What is an endless loop?
program to find the magic square
Write a program to print ASCII code for a given digit.