Online Programming Server
Login
[
?
]
Menu
Main Page
Tutorials
[
?
]
Problems
[
?
]
Contests
[
?
]
Help / FAQ
Facebook
Tutorial 74: Chapter 2 - Formatted I/O
You are here:
Tutorials
>>
Basic
>>
C
>>
C Programming Basics
>>
Chapter 2 - Formatted I/O
Tutorial ID
74
Title
Chapter 2 - Formatted I/O
Printing to screen
Before we get into the topic, let's look at the "Hello, world" program once again.
#include <stdio.h> int main() { printf("Hello, world!"); return 0; }
The underlined “printf” statement prints the line "Hello, world!" to the screen.
Add to My Course
Post Your Comment
Title
Message
Facebook