Output (Print Text)
To output values or print text in C, you can use the printf()
function:
Example
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
To output values or print text in C, you can use the printf()
function:
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}