Introduction To C Programming
Introduction To C Programming
INTRODUCTION TO C PROGRAMMING
1642 1937 -
3000 BC
1800s 1890 1936 1937 1942
Abacus:
Ancient
use for 1st Generation
computing
Computers: Use
wikipedia.org wikipedia.org of Vacuum
www.computerhistory.org nationalgeographic
Tubes. 1st Digital
Computers
source: https://www.youtube.com/watch?v=-M6lANfzFsM
Source: Henriok -
Own work under
license CC0
wikipedia.org
http://www.tesla-institute.com/
”
ENGR. SHIELA M. CABAHUG 10
”
source: https://www.raconteur.net/top-ten-construction-innovations/
Code Editor
Debugger/Messages
Main Function
Comments
C programming Syntax/C Codes
A comment starts with a slash asterisk /* and ends with a asterisk slash */ and can be anywhere in
COMMENTS your program or // . Comments will help you and others understand the flow of your written
code.
SYNTAX is the set of rules governing writing of software in the C language. It is designed to allow for programs
that are extremely terse, have a close relationship with the resulting object code, and yet provide
relatively high-level data abstraction. source: wikipedia.org
COMPILE AND RUN when you compile your program, it will look for the main function, and it will translate to a
machine language. You need to have a C compiler that is provided by the IDE. Running
your program means it execute what should it do based on your written program