How to use fputs to output a string to stdout in C

1 Answer

0 votes
#include <stdio.h>

int main(void)
{
    fputs("C Programming", stdout);

    return 0;
}




/*
run:

C Programming

*/

 



answered Feb 4, 2023 by avibootz

Related questions

1 answer 83 views
1 answer 151 views
1 answer 190 views
1 answer 126 views
...