answersLogoWhite

0

The only way i see is to use :

using the right file descriptor

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Without printf statement semicolon print the statement?

int main (void) { if(printf("Print whatever you want")) { } }


Can anyone give a logic in c plus plus to print something on screen using printf statement but without semicolon used after printf statement?

try to usecondition ? value if true : value if falseor: if (printf ("Hello")) {}


What is printf function?

Printf function is used in c language. Printf is used to print something to the standard output. ex: printf ('welcome');


Why printf is used instead of print in c?

The printf() function prints a formatted string.


Can you print string without using semi column in printf statement in c programming?

If you forget the semicolon, your program won't compile.


What are the example of turbo c with using scan and print function?

#include<stdio.h> Void main() { int a,b; printf("Enter a Number: "); // for print function as an out-put scanf("%d",&a); //for scan function as in input /* Here we can use print function once again as: */ a=a++; printf("%d",a); }


How do you print 0001 in C programming?

its quite simple using printf function


Is printf keyword?

== == What is printf in c or prototype of printf with example (q) What is prototype of printf function ? Explain each term. Ans: Prototype of printf function is : int printf( const char *format ,…) Explanation of each term : Parameter of printf function is : (three continuous dots) : It is called ellipsis. It indicates the variable number of arguments. Example of ellipsis: #include void ellipsis(int a,...); void main() { int a=5,b=10; clrscr(); ellipsis(a,b); getch(); } void ellipsis(int a,...) { printf("%d ",a); } Output:5 So printf function can have any number of variables as an argument.


Write a programme in c to print hello world without using statement terminator?

#include<stdio.h> #include<conio.h> void main() { if(printf("hello world")){} if(getch()){} }


How do you print the message without using printf and semicolon?

use cout << simple


Purpose of printf?

print means print, f means formattingorprintf is a output statement function in the C run-time libraryexample:printf ("the value of A is %d\n", A);


Print 200 with and without sign?

printf("%u %+d %+d",200,200,-200); //will print 200 +200 -200