printf() Statement

“printf()” statement : “printf()” is a C library function from the header file “stdio.h”(stdio – standard input output), which sends the console output to stdout. Example : C C #include<stdio.h> int main() { printf(“Hello!”); // this printf function will print “Hello!” as the output. return 0; } Output Output Hello! “printf()” returns the number of […]

printf() Statement Read More »