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 |
Write a program to add a given duration with time(24hrs format)
hi how to convert program from notepad to turboc editor can u please help me
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
What are the types of assignment statements?
What is a pragma?
What are header files? What are their uses?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
Write a C program to perform some of the operation which can be performed using Single linked list
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Implement bit Array in C.
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Explain that why C is procedural?