CSE-113: Structured Programming Language CSE-114: Structured Programming Language Lab
CSE-113: Structured Programming Language CSE-114: Structured Programming Language Lab
Programming Language
1
CSE-114: Structured
Programming Language Lab
Lecture 1
Introductory Class
Text:
Programming in ANSI C – Balagurusamy
C – How to Program (4th Edition) – Deitel & Deitel
C for contest—
www.cse.pstu.ac.bd/~cse113/
Will be updated soon.
You will find
course lecture
Syllabus
midterm exam news
Results
assignments
Others…
General-purpose language
Procedural (= functions + data)
Mid-level
Relatively small, simple to learn
Cross-platform language, single-platform compilers (unlike
Java)
Char-based
#include <stdio.h>
int main()
{
printf(“Welcome to CSE113\n”);
return 0;
}
Puzzle Time