how print HELLO on screen without using printf statement in C language????

how print HELLO on screen without using printf statement in C language????

1 comment:

  1. By using the following code

    char buff[]="hello";
    write(1,buff,5);

    ReplyDelete