Logo

dev-resources.site

for different kinds of informations.

How do you print in c language?

Published at
12/8/2024
Categories
c
Author
Sandeep
Categories
1 categories in total
c
open
How do you print in c language?

I C programming language to print you have to first import a library named stdio which refers to standard input output

Here is how it works:-

#include<stdio.h>
int main(){
   printf("I am new to C programming");
return 0;
}

It's That easy :)

Featured ones: