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 type qualifiers?
Write a C program to find the smallest of three integers, without using any of the comparision operators.
how the compiler treats any volatile variable?Explain with example.
what is c programming?
What is a MAC Address?
Explain how do you determine whether to use a stream function or a low-level function?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
Write a code of a general series where the next element is the sum of last k terms.
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
Explain what are the standard predefined macros?
Is there a way to compare two structure variables?