fork download
  1. /* package whate #include <stdio.h>
  2.   int main(){
  3.   printf("Hello C Language");
  4.   return 0;
  5.   }
  6.  
  7. #include <stdio.h> includes the standard input output library functions. The printf() function is defined in stdio.h .
  8.  
  9. int main() The main() function is the entry point of every program in c language.
  10.  
  11. printf() The printf() function is used to print data on the console.
  12.  
  13. 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.
  14. How to compile and run the c program
  15.  
  16. There are 2 ways to compile and run the c program, by menu and by shortcut.
  17. By menu
  18.  
  19. Now click on the compile menu then compile sub menu to compile the c program.
  20.  
  21. Then click on the run menu then run sub menu to run the c program.
  22. By shortcut
  23.  
  24. Or, press ctrl+f9 keys compile and run the program directly.
  25.  
  26. You will see the following output on user screen.
  27. c program output
  28.  
  29. You can view the user screen any time by pressing the alt+f5 keys.
  30.  
  31. Now press Esc to return to the turbo c++ console.
  32. Next TopicFlow of C program
  33.  
  34.  
  35. ← prev
  36. next →
  37. Help Others, Please Share
  38. facebook twitter google plus pinterest
  39. Join Javatpoint Test Series
  40. Placement Papers
  41. TCS
  42. HCL
  43. Infosys
  44. IBM
  45. Accenture
  46. AMCAT
  47. eLitmas
  48. Java
  49. Python
  50. C Programming
  51. Networking
  52. Bank PO/Clerk
  53. UPSSSC
  54. Government Exams
  55. SSC
  56. Civil Services
  57. SBI
  58. GATE
  59. NEET
  60. CAT
  61. Railway
  62. CTET
  63. IIT JEE
  64. Learn Latest Tutorials
  65. Laravel Tutorial
  66.  
  67. Laravel
  68. OpenCV Tutorial
  69.  
  70. OpenCV
  71. Machine Learning Tutorial
  72.  
  73. ML
  74. NLP Tutorial
  75.  
  76. NLP
  77. Ionic Tutorial
  78.  
  79. Ionic
  80. VHDL Tutorial
  81.  
  82. VHDL
  83. Tensorflow Tutorial
  84.  
  85. Tensorflow
  86. Data Mining Tutorial
  87.  
  88. Data Mining
  89. Xamarin Tutorial
  90.  
  91. Xamarin
  92. Ansible Tutorial
  93.  
  94. Ansible
  95. Matplotlib Tutorial
  96.  
  97. Matplotlib
  98. Wireshark Tutorial
  99.  
  100. Wireshark
  101. Preparation
  102. Aptitude
  103.  
  104. Aptitude
  105. Logical Reasoning
  106.  
  107. Reasoning
  108. Verbal Ability
  109.  
  110. Verbal A.
  111. Interview Questions
  112.  
  113. Interview
  114. Company Interview Questions
  115.  
  116. Company
  117. Trending Technologies
  118. Artificial Intelligence Tutorial
  119.  
  120. AI
  121. AWS Tutorial
  122.  
  123. AWS
  124. Selenium tutorial
  125.  
  126. Selenium
  127. Cloud tutorial
  128.  
  129. Cloud
  130. Hadoop tutorial
  131.  
  132. Hadoop
  133. ReactJS Tutorial
  134.  
  135. ReactJS
  136. React Native Tutorial
  137.  
  138. React Native
  139. Node.js tutorial
  140.  
  141. Node.js
  142. Data Science Tutorial
  143.  
  144. D. Science
  145. Angular 7 Tutorial
  146.  
  147. Angular 7
  148. Blockchain Tutorial
  149.  
  150. Blockchain
  151. Git Tutorial
  152.  
  153. Git
  154. B.Tech / MCA
  155. DBMS tutorial
  156.  
  157. DBMS
  158. Data Structures tutorial
  159.  
  160. DS
  161. DAA tutorial
  162.  
  163. DAA
  164. Operating System tutorial
  165.  
  166. OS
  167. Computer Network tutorial
  168.  
  169. C. Network
  170. Compiler Design tutorial
  171.  
  172. Compiler D.
  173. Computer Organization and Architecture
  174.  
  175. COA
  176. Discrete Mathematics Tutorial
  177.  
  178. D. Math.
  179. Ethical Hacking Tutorial
  180.  
  181. E. Hacking
  182. Computer Graphics Tutorial
  183.  
  184. C. Graphics
  185. Software Engineering Tutorial
  186.  
  187. Software E.
  188. html tutorial
  189.  
  190. Web Tech.
  191. Cyber Security tutorial
  192.  
  193. Cyber Sec.
  194. Automata Tutorial
  195.  
  196. Automata
  197. C Language tutorial
  198.  
  199. C
  200. C++ tutorial
  201.  
  202. C++
  203. Java tutorial
  204.  
  205. Java
  206. .Net Framework tutorial
  207.  
  208. .Net
  209. Python tutorial
  210.  
  211. Python
  212. List of Programs
  213.  
  214. Programs
  215. Control Systems tutorial
  216.  
  217. Control S.
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224. ver; // don't place package name! */
  225.  
  226. import java.util.*;
  227. import java.lang.*;
  228. import java.io.*;
  229.  
  230. /* Name of the class has to be "Main" only if the class is public. */
  231. class Ideone
  232. {
  233. public static void main (String[] args) throws java.lang.Exception
  234. {
  235. // your code goes here
  236. }
  237. }
Success #stdin #stdout 0.12s 52588KB
stdin
Standard input is empty
stdout
Standard output is empty