Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102896339
ch-01-ex-01-solution.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Feb 25, 07:29
Size
491 B
Mime Type
text/x-c
Expires
Thu, Feb 27, 07:29 (2 d)
Engine
blob
Format
Raw Data
Handle
24450976
Attached To
R1106 Programming Concept Rouaze
ch-01-ex-01-solution.cpp
View Options
/*
* exercise-01.cpp
*
* Hello, World!
*
* Created on: Jul 26, 2012
* Author: Radu Popescu <radu.popescu@epfl.ch>
*/
/* Reading and writing operations require the following header
* to be included
*/
#include <iostream>
int
main
(
int
argc
,
char
*
argv
[])
{
/* This is a comment and will be ignored by the compiler.
* Comments are useful to explain in English what the program does.
*/
// Print "Hello World" to the screen
std
::
cout
<<
"Hello World
\n
"
;
return
0
;
}
Event Timeline
Log In to Comment