/* package whate #include <stdio.h>
int main(){
printf("Hello C Language");
return 0;
}
#include <stdio.h> includes the standard input output library functions. The printf() function is defined in stdio.h .
int main() The main() function is the entry point of every program in c language.
printf() The printf() function is used to print data on the console.
return 0 The return 0 statement, returns execution status to the OS. The 0 value is used for successful execution and 1 for unsuccessful execution.
How to compile and run the c program
There are 2 ways to compile and run the c program, by menu and by shortcut.
By menu
Now click on the compile menu then compile sub menu to compile the c program.
Then click on the run menu then run sub menu to run the c program.
By shortcut
Or, press ctrl+f9 keys compile and run the program directly.
You will see the following output on user screen.
c program output
You can view the user screen any time by pressing the alt+f5 keys.
Now press Esc to return to the turbo c++ console.
Next TopicFlow of C program
← prev
next →
Help Others, Please Share
facebook twitter google plus pinterest
Join Javatpoint Test Series
Placement Papers
TCS
HCL
Infosys
IBM
Accenture
AMCAT
eLitmas
Java
Python
C Programming
Networking
Bank PO/Clerk
UPSSSC
Government Exams
SSC
Civil Services
SBI
GATE
NEET
CAT
Railway
CTET
IIT JEE
Learn Latest Tutorials
Laravel Tutorial
Laravel
OpenCV Tutorial
OpenCV
Machine Learning Tutorial
ML
NLP Tutorial
NLP
Ionic Tutorial
Ionic
VHDL Tutorial
VHDL
Tensorflow Tutorial
Tensorflow
Data Mining Tutorial
Data Mining
Xamarin Tutorial
Xamarin
Ansible Tutorial
Ansible
Matplotlib Tutorial
Matplotlib
Wireshark Tutorial
Wireshark
Preparation
Aptitude
Aptitude
Logical Reasoning
Reasoning
Verbal Ability
Verbal A.
Interview Questions
Interview
Company Interview Questions
Company
Trending Technologies
Artificial Intelligence Tutorial
AI
AWS Tutorial
AWS
Selenium tutorial
Selenium
Cloud tutorial
Cloud
Hadoop tutorial
Hadoop
ReactJS Tutorial
ReactJS
React Native Tutorial
React Native
Node.js tutorial
Node.js
Data Science Tutorial
D. Science
Angular 7 Tutorial
Angular 7
Blockchain Tutorial
Blockchain
Git Tutorial
Git
B.Tech / MCA
DBMS tutorial
DBMS
Data Structures tutorial
DS
DAA tutorial
DAA
Operating System tutorial
OS
Computer Network tutorial
C. Network
Compiler Design tutorial
Compiler D.
Computer Organization and Architecture
COA
Discrete Mathematics Tutorial
D. Math.
Ethical Hacking Tutorial
E. Hacking
Computer Graphics Tutorial
C. Graphics
Software Engineering Tutorial
Software E.
html tutorial
Web Tech.
Cyber Security tutorial
Cyber Sec.
Automata Tutorial
Automata
C Language tutorial
C
C++ tutorial
C++
Java tutorial
Java
.Net Framework tutorial
.Net
Python tutorial
Python
List of Programs
Programs
Control Systems tutorial
Control S.
ver; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
{
// your code goes here
}
}