answersLogoWhite

0


Best Answer

You can use fputs() instead of printf().

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How can we write our name in C programming language without using printf?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

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


How do you display 'hello world' using c programming language?

#include<stdio.h> int main (void) { printf ("Hello world!\n"); return 0; }


How do you print on console without using printf or puts in c language?

write, putchar, putc, fputc etc


How do you print 0001 in C programming?

its quite simple using printf function


How can write the name in c plus plus language without using cout statement?

I believe, you can use C-function - printf().


Sample text color in C language?

printf("%c[%d;%dmHello World%c[%dm\n",27,1,33,27,0);


C language arrange 10 numbers in descending orders and find one of them using baniry search method?

Arranging 10 numbers in descending orders using C programming language and finding one of them using binary search method is as below: #include void main () { int i,j,a,n,number[30]; printf ("Enter the value of Nn"); scanf ("%d", &n); printf ("Enter the numbers n"); for (i=0; i


Using C programming language design a menu driven programme that will draw a straight line?

#include<stdio.h> #include<conio.h> int main() { int i=0,opt; printf("Enter your choice\n"); printf("1. Horizontal line"); printf("\n2. Vertical line\n"); scanf("%d",&opt); if(opt==1) { for(i=0;i<=50;i++) printf("%c",196); } else { for(i=0;i<=40;i++) printf("%c\n",179); } return 0; }


How do you write an output without using printf function in c?

Yes. However, C is a type-sensitive language thus PRINTF and printf would need to be defined as separate functions. However, names using all caps are conventionally used to denote macros in C thus you can easily define PRINTF as an alias for printf: #define PRINTF printf; int main (void) { PRINTF ("%d", 42); } The C precompiler will substitute all instances of the symbol PRINTF with printf, thus the code seen by the compiler will become: int main (void) { printf ("%d", 42); }


How infinite loop is created using while in C programming?

while (2*2==4) printf ("Still running\n");


How can a person write a program without using printf function in C language?

Here is an example:#include int main (void){puts ("Hello, world");return 0;}


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

use cout << simple