Use printf() in C Language:
(1) printf() is used for printing output value.
(2) Sample C language code and its output, as shown:
#include <stdio.h> #include <conio.h> int main() { printf(“My First C Programme”); getch(); return 0; } |

(3) After that go to the “Build” menu and select the “Build” option for publishing the code as shown.

(4) After building the code, press the “Run” button, as shown.

(5) After pressing the “run” button, the output screen is opened, as shown.
