際際滷

際際滷Share a Scribd company logo
Programming Basics
Introduction to C programming
How does a program run?
 Step 1  Write lines of codes.
 Step 2  Compile.
 Step 3  Execute.
 Step 4  Get the output.
IDE vs Compiler
 IDE  Integrated Development Environment
 Compiler  translates to machine level(01010)
A basic C program
Hello World in Detail :
 stdio.h is a header file
 #include is a preprocessor directive.
 int main() : where the program execution
begins.
 { and } symbols mark the beginning and end of
a block of code.
 return 0; terminates the main() function
Identifiers
 name given to entities such as variables,
functions.
 Example - int money ;
 int money;
Here, money is identifier.
 must be different from keywords
Keywords
 predefined, reserved words.
 Example : int money;
int is a keyword .
Variable
 a variable is a container to hold data.
 Example: int score = 95;
Rules for naming a variable
 can have letters , digits and underscore only.
 The first letter of a variable should be either a
letter or an underscore
Data Types in C
Integer
 positive and negative values but no decimal
values. Eg : 0, -5, 10 .
 Int id ;
 Here, id is a variable of type integer.
 Int id,age;
Floating types
 can hold real numbers such as: 2.34, -9.382,
5.0 etc.
 float price; // 4 bytes size
 double price; // 8 bytes size
 Both are floating types.
Character types
 Keyword char is used for declaring such
variables.
 char test = 'h';
 test is a character variable.
 The value of test is 'h'.
 No string type in C . alternative = char array
 Eg: char num[ ] = hello
I/O in C programming
 Two commonly used functions are printf() and
scanf().
 Function scanf() reads input.
 Function printf() prints output.
Format specifiers and ampersand
 scanf("%d,&a); for int , &a means the address
of variable a
 scanf("%f,&a); for float
 Scanf(%c,&ch);
 Scanf(%s,&word);
 printf("%d is value of a",a);
Operators
 to perform tasks including arithmetic, conditional and bitwise
operations
 Types :
1. Arithmetic Operators
2. Increment and Decrement Operators
3. Assignment Operators
4. Relational Operators
5. Logical Operators
6. Others (Conditional,Bitwise and Special Operators)
Arithmetic Operators
Increment and decrement operators
 Increment ++ increases the value by 1
 Decrement -- decreases the value by 1
 Example :
int a=5;
a++ . value of a is now 6
 Similarly, for a-- , a is 4
++ and -- operator as prefix and
postfix
 Postfix a++  original value of a is returned
first then, a is incremented by 1.
 Prefix ++a  value of a is incremented by 1
then, it returns the value.
Assignment Operators
Relational Operators
Logical Operators
Decision Making
 If else
 Nested if else
 Loops
if and if else statement
1 . if (testExpression)
{
// statements
}
2 . if (testExpression) {
// codes inside the body of if
}
else {
// codes inside the body of else
}
Flowcharts of if and if else
Nested if...else statement
if (testExpression1)
{ // statements to be executed if testExpression1 is true
}
else if(testExpression2)
{ // to be executed if testExpression1 is false and testExpression2 is true
}
...
else
{ // statements to be executed if all test expressions are false
}
Loops
 are used to repeat a specific block of code.
 Types -
1 . for loop
2 . while loop
3 . do while loop
For loop
for (initializationStatement; testExpression;
updateStatement)
{
// codes
}
Programming basics
While loop
while (testExpression)
{
//codes
}
Programming basics
Do while loop
do
{
// codes
}
while (testExpression);
Programming basics
Break and continue statement
 Break terminates the loop
 Continue  skips some statement
 Syntax :
break;
continue;
Programming basics
Switch case
switch (n)
{
case constant1:
// code to be executed if n is equal to constant1;
break;
case constant2:
// code to be executed if n is equal to constant2;
break;
. . .
default:
// code to be executed if n doesn't match any constant
}
Functions
 a block of code that performs a specific task.
 Two types of functions :
1 . User defined functions
2 . Standard library functions
Standard library functions
 built-in functions
 handle tasks such as mathematical
computations, I/O processing, etc.
 Example : printf() and scanf()
User defined functions
Advantage of user defined functions
 Clean,easier to maintain.
 Reusability.
 Easy to debug.

More Related Content

What's hot (19)

Spf Chapter5 Conditional Logics
Spf Chapter5 Conditional LogicsSpf Chapter5 Conditional Logics
Spf Chapter5 Conditional Logics
Hock Leng PUAH
11 lec 11 storage class
11 lec 11 storage class11 lec 11 storage class
11 lec 11 storage class
kapil078
[C++ korea] effective modern c++ study item 3 understand decltype +企
[C++ korea] effective modern c++ study   item 3 understand decltype +企[C++ korea] effective modern c++ study   item 3 understand decltype +企
[C++ korea] effective modern c++ study item 3 understand decltype +企
Seok-joon Yun
Microcontroller lec 3
Microcontroller  lec 3Microcontroller  lec 3
Microcontroller lec 3
Ibrahim Reda
Storage classes in C
Storage classes in C Storage classes in C
Storage classes in C
Self employed
Storage classes
Storage classesStorage classes
Storage classes
priyanka jain
04a intro while
04a intro while04a intro while
04a intro while
hasfaa1017
C UNIT-2 PREPARED Y M V BRAHMANANDA REDDY
C UNIT-2 PREPARED Y M V BRAHMANANDA REDDYC UNIT-2 PREPARED Y M V BRAHMANANDA REDDY
C UNIT-2 PREPARED Y M V BRAHMANANDA REDDY
Rajeshkumar Reddy
Loops in c
Loops in cLoops in c
Loops in c
shubhampandav3
C program language tutorial for loop while loop do while loop
C program language tutorial for loop while loop do while loopC program language tutorial for loop while loop do while loop
C program language tutorial for loop while loop do while loop
Sourav Ganguly
Types of loops in c language
Types of loops in c languageTypes of loops in c language
Types of loops in c language
sneha2494
Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statements
Saad Sheikh
11 2. variable-scope rule,-storage_class
11 2. variable-scope rule,-storage_class11 2. variable-scope rule,-storage_class
11 2. variable-scope rule,-storage_class
[C++ Korea] Effective Modern C++ Study, Item 11 - 13
[C++ Korea] Effective Modern C++ Study, Item 11 - 13[C++ Korea] Effective Modern C++ Study, Item 11 - 13
[C++ Korea] Effective Modern C++ Study, Item 11 - 13
Chris Ohk
java in Aartificial intelligent by virat andodariya
java in Aartificial intelligent by virat andodariyajava in Aartificial intelligent by virat andodariya
java in Aartificial intelligent by virat andodariya
viratandodariya
Php Inspections (EA Extended): if-conditions optimization
Php Inspections (EA Extended): if-conditions optimizationPhp Inspections (EA Extended): if-conditions optimization
Php Inspections (EA Extended): if-conditions optimization
Vladimir Reznichenko
Storage classes
Storage classesStorage classes
Storage classes
Praveen M Jigajinni
Understand Decision structures in c++ (cplusplus)
Understand Decision structures in c++ (cplusplus)Understand Decision structures in c++ (cplusplus)
Understand Decision structures in c++ (cplusplus)
Muhammad Tahir Bashir
Spf Chapter4 Variables
Spf Chapter4 VariablesSpf Chapter4 Variables
Spf Chapter4 Variables
Hock Leng PUAH
Spf Chapter5 Conditional Logics
Spf Chapter5 Conditional LogicsSpf Chapter5 Conditional Logics
Spf Chapter5 Conditional Logics
Hock Leng PUAH
11 lec 11 storage class
11 lec 11 storage class11 lec 11 storage class
11 lec 11 storage class
kapil078
[C++ korea] effective modern c++ study item 3 understand decltype +企
[C++ korea] effective modern c++ study   item 3 understand decltype +企[C++ korea] effective modern c++ study   item 3 understand decltype +企
[C++ korea] effective modern c++ study item 3 understand decltype +企
Seok-joon Yun
Microcontroller lec 3
Microcontroller  lec 3Microcontroller  lec 3
Microcontroller lec 3
Ibrahim Reda
Storage classes in C
Storage classes in C Storage classes in C
Storage classes in C
Self employed
04a intro while
04a intro while04a intro while
04a intro while
hasfaa1017
C UNIT-2 PREPARED Y M V BRAHMANANDA REDDY
C UNIT-2 PREPARED Y M V BRAHMANANDA REDDYC UNIT-2 PREPARED Y M V BRAHMANANDA REDDY
C UNIT-2 PREPARED Y M V BRAHMANANDA REDDY
Rajeshkumar Reddy
C program language tutorial for loop while loop do while loop
C program language tutorial for loop while loop do while loopC program language tutorial for loop while loop do while loop
C program language tutorial for loop while loop do while loop
Sourav Ganguly
Types of loops in c language
Types of loops in c languageTypes of loops in c language
Types of loops in c language
sneha2494
Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statements
Saad Sheikh
11 2. variable-scope rule,-storage_class
11 2. variable-scope rule,-storage_class11 2. variable-scope rule,-storage_class
11 2. variable-scope rule,-storage_class
[C++ Korea] Effective Modern C++ Study, Item 11 - 13
[C++ Korea] Effective Modern C++ Study, Item 11 - 13[C++ Korea] Effective Modern C++ Study, Item 11 - 13
[C++ Korea] Effective Modern C++ Study, Item 11 - 13
Chris Ohk
java in Aartificial intelligent by virat andodariya
java in Aartificial intelligent by virat andodariyajava in Aartificial intelligent by virat andodariya
java in Aartificial intelligent by virat andodariya
viratandodariya
Php Inspections (EA Extended): if-conditions optimization
Php Inspections (EA Extended): if-conditions optimizationPhp Inspections (EA Extended): if-conditions optimization
Php Inspections (EA Extended): if-conditions optimization
Vladimir Reznichenko
Understand Decision structures in c++ (cplusplus)
Understand Decision structures in c++ (cplusplus)Understand Decision structures in c++ (cplusplus)
Understand Decision structures in c++ (cplusplus)
Muhammad Tahir Bashir
Spf Chapter4 Variables
Spf Chapter4 VariablesSpf Chapter4 Variables
Spf Chapter4 Variables
Hock Leng PUAH

Similar to Programming basics (20)

Dart workshop
Dart workshopDart workshop
Dart workshop
Vishnu Suresh
C programing Tutorial
C programing TutorialC programing Tutorial
C programing Tutorial
Mahira Banu
Basic concept of c++
Basic concept of c++Basic concept of c++
Basic concept of c++
shashikant pabari
C programming session3
C programming  session3C programming  session3
C programming session3
Keroles karam khalil
C programming session3
C programming  session3C programming  session3
C programming session3
Keroles karam khalil
learn basic to advance C Programming Notes
learn basic to advance C Programming Noteslearn basic to advance C Programming Notes
learn basic to advance C Programming Notes
bhagadeakshay97
Learn To Code: Introduction to c
Learn To Code: Introduction to cLearn To Code: Introduction to c
Learn To Code: Introduction to c
SadhanaParameswaran
Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++
Rasan Samarasinghe
C Programming with oops Concept and Pointer
C Programming with oops Concept and PointerC Programming with oops Concept and Pointer
C Programming with oops Concept and Pointer
Jeyarajs7
Condition Stmt n Looping stmt.pptx
Condition Stmt n Looping stmt.pptxCondition Stmt n Looping stmt.pptx
Condition Stmt n Looping stmt.pptx
Likhil181
C_BASICS FOR C PROGRAMMER WITH SRIVATHS P
C_BASICS FOR C PROGRAMMER WITH  SRIVATHS PC_BASICS FOR C PROGRAMMER WITH  SRIVATHS P
C_BASICS FOR C PROGRAMMER WITH SRIVATHS P
amankr1234am
Lec 10
Lec 10Lec 10
Lec 10
kapil078
C programming tutorial for Beginner
C programming tutorial for BeginnerC programming tutorial for Beginner
C programming tutorial for Beginner
sophoeutsen2
C notes for exam preparation
C notes for exam preparationC notes for exam preparation
C notes for exam preparation
Lakshmi Sarvani Videla
Python ppt
Python pptPython ppt
Python ppt
GoogleDeveloperStude2
Dr Mrs A A Miraje C Programming PPT.pptx
Dr Mrs A A Miraje C Programming PPT.pptxDr Mrs A A Miraje C Programming PPT.pptx
Dr Mrs A A Miraje C Programming PPT.pptx
ProfAAMiraje
#Code2 create c++ for beginners
#Code2 create  c++ for beginners #Code2 create  c++ for beginners
#Code2 create c++ for beginners
GDGKuwaitGoogleDevel
Fundamental programming Nota Topic 2.pptx
Fundamental programming Nota Topic 2.pptxFundamental programming Nota Topic 2.pptx
Fundamental programming Nota Topic 2.pptx
UmmuNazieha
C decision making and looping.
C decision making and looping.C decision making and looping.
C decision making and looping.
Haard Shah
Lecture 2 keyword of C Programming Language
Lecture 2 keyword of C Programming LanguageLecture 2 keyword of C Programming Language
Lecture 2 keyword of C Programming Language
SURAJ KUMAR
C programing Tutorial
C programing TutorialC programing Tutorial
C programing Tutorial
Mahira Banu
learn basic to advance C Programming Notes
learn basic to advance C Programming Noteslearn basic to advance C Programming Notes
learn basic to advance C Programming Notes
bhagadeakshay97
Learn To Code: Introduction to c
Learn To Code: Introduction to cLearn To Code: Introduction to c
Learn To Code: Introduction to c
SadhanaParameswaran
Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++
Rasan Samarasinghe
C Programming with oops Concept and Pointer
C Programming with oops Concept and PointerC Programming with oops Concept and Pointer
C Programming with oops Concept and Pointer
Jeyarajs7
Condition Stmt n Looping stmt.pptx
Condition Stmt n Looping stmt.pptxCondition Stmt n Looping stmt.pptx
Condition Stmt n Looping stmt.pptx
Likhil181
C_BASICS FOR C PROGRAMMER WITH SRIVATHS P
C_BASICS FOR C PROGRAMMER WITH  SRIVATHS PC_BASICS FOR C PROGRAMMER WITH  SRIVATHS P
C_BASICS FOR C PROGRAMMER WITH SRIVATHS P
amankr1234am
C programming tutorial for Beginner
C programming tutorial for BeginnerC programming tutorial for Beginner
C programming tutorial for Beginner
sophoeutsen2
Dr Mrs A A Miraje C Programming PPT.pptx
Dr Mrs A A Miraje C Programming PPT.pptxDr Mrs A A Miraje C Programming PPT.pptx
Dr Mrs A A Miraje C Programming PPT.pptx
ProfAAMiraje
#Code2 create c++ for beginners
#Code2 create  c++ for beginners #Code2 create  c++ for beginners
#Code2 create c++ for beginners
GDGKuwaitGoogleDevel
Fundamental programming Nota Topic 2.pptx
Fundamental programming Nota Topic 2.pptxFundamental programming Nota Topic 2.pptx
Fundamental programming Nota Topic 2.pptx
UmmuNazieha
C decision making and looping.
C decision making and looping.C decision making and looping.
C decision making and looping.
Haard Shah
Lecture 2 keyword of C Programming Language
Lecture 2 keyword of C Programming LanguageLecture 2 keyword of C Programming Language
Lecture 2 keyword of C Programming Language
SURAJ KUMAR

Recently uploaded (20)

Vivaldi Web Browser 6.8.3381.50 Crack Free Download
Vivaldi Web Browser 6.8.3381.50 Crack Free DownloadVivaldi Web Browser 6.8.3381.50 Crack Free Download
Vivaldi Web Browser 6.8.3381.50 Crack Free Download
alihamzakpa020
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odooTour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
AxisTechnolabs
TubeMate Downloader 5.18. Crack + License Key 2025
TubeMate Downloader 5.18. Crack + License Key 2025TubeMate Downloader 5.18. Crack + License Key 2025
TubeMate Downloader 5.18. Crack + License Key 2025
madni05kp
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
shahzad011kp
Wilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREEWilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREE
muhammadwaqaryounus6
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
Cost of Building Text Classification Model for AI-based Content Curation.pdf
Cost of Building Text Classification Model for AI-based Content Curation.pdfCost of Building Text Classification Model for AI-based Content Curation.pdf
Cost of Building Text Classification Model for AI-based Content Curation.pdf
Belitsoft
e-World Tech PHPMaker Crack 2024.14 Download 2025
e-World Tech PHPMaker Crack 2024.14 Download 2025e-World Tech PHPMaker Crack 2024.14 Download 2025
e-World Tech PHPMaker Crack 2024.14 Download 2025
madni07kp
Hands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud DevelopersHands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud Developers
Meetu Maltiar
Automate Troubleshooting with Log Monitoring Tools (1).pdf
Automate Troubleshooting with Log Monitoring Tools (1).pdfAutomate Troubleshooting with Log Monitoring Tools (1).pdf
Automate Troubleshooting with Log Monitoring Tools (1).pdf
Devseccops.ai
TubeMate Downloader 5.18. Crack + License Key 2025
TubeMate Downloader 5.18. Crack + License Key 2025TubeMate Downloader 5.18. Crack + License Key 2025
TubeMate Downloader 5.18. Crack + License Key 2025
shanbhai08kp
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLMJava and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Edward Burns
Evolution and Examples of Java Features, from Java 1.7 to Java 24
Evolution and Examples of Java Features, from Java 1.7 to Java 24Evolution and Examples of Java Features, from Java 1.7 to Java 24
Evolution and Examples of Java Features, from Java 1.7 to Java 24
Yann-Ga谷l Gu辿h辿neuc
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recapMarketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
BradBedford3
Software Ideas Modeler Ultimate 14.62 free
Software Ideas Modeler Ultimate 14.62 freeSoftware Ideas Modeler Ultimate 14.62 free
Software Ideas Modeler Ultimate 14.62 free
alihamzakpa025
Custom AI Chatbot Development Services.pdf
Custom AI Chatbot Development Services.pdfCustom AI Chatbot Development Services.pdf
Custom AI Chatbot Development Services.pdf
Belitsoft
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
WSO2
Evolving Scala, Scalar conference, Warsaw, March 2025
Evolving Scala, Scalar conference, Warsaw, March 2025Evolving Scala, Scalar conference, Warsaw, March 2025
Evolving Scala, Scalar conference, Warsaw, March 2025
Martin Odersky
Cadence Fidelity Pointwise Crack 2024.1 Full version 2025
Cadence Fidelity Pointwise Crack 2024.1 Full version 2025Cadence Fidelity Pointwise Crack 2024.1 Full version 2025
Cadence Fidelity Pointwise Crack 2024.1 Full version 2025
madni07kp
GraphPad Prism 10.3.0.507 Crack Free Download
GraphPad Prism 10.3.0.507 Crack Free DownloadGraphPad Prism 10.3.0.507 Crack Free Download
GraphPad Prism 10.3.0.507 Crack Free Download
madni07kp
Vivaldi Web Browser 6.8.3381.50 Crack Free Download
Vivaldi Web Browser 6.8.3381.50 Crack Free DownloadVivaldi Web Browser 6.8.3381.50 Crack Free Download
Vivaldi Web Browser 6.8.3381.50 Crack Free Download
alihamzakpa020
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odooTour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
AxisTechnolabs
TubeMate Downloader 5.18. Crack + License Key 2025
TubeMate Downloader 5.18. Crack + License Key 2025TubeMate Downloader 5.18. Crack + License Key 2025
TubeMate Downloader 5.18. Crack + License Key 2025
madni05kp
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
shahzad011kp
Wilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREEWilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREE
muhammadwaqaryounus6
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
Cost of Building Text Classification Model for AI-based Content Curation.pdf
Cost of Building Text Classification Model for AI-based Content Curation.pdfCost of Building Text Classification Model for AI-based Content Curation.pdf
Cost of Building Text Classification Model for AI-based Content Curation.pdf
Belitsoft
e-World Tech PHPMaker Crack 2024.14 Download 2025
e-World Tech PHPMaker Crack 2024.14 Download 2025e-World Tech PHPMaker Crack 2024.14 Download 2025
e-World Tech PHPMaker Crack 2024.14 Download 2025
madni07kp
Hands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud DevelopersHands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud Developers
Meetu Maltiar
Automate Troubleshooting with Log Monitoring Tools (1).pdf
Automate Troubleshooting with Log Monitoring Tools (1).pdfAutomate Troubleshooting with Log Monitoring Tools (1).pdf
Automate Troubleshooting with Log Monitoring Tools (1).pdf
Devseccops.ai
TubeMate Downloader 5.18. Crack + License Key 2025
TubeMate Downloader 5.18. Crack + License Key 2025TubeMate Downloader 5.18. Crack + License Key 2025
TubeMate Downloader 5.18. Crack + License Key 2025
shanbhai08kp
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLMJava and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Edward Burns
Evolution and Examples of Java Features, from Java 1.7 to Java 24
Evolution and Examples of Java Features, from Java 1.7 to Java 24Evolution and Examples of Java Features, from Java 1.7 to Java 24
Evolution and Examples of Java Features, from Java 1.7 to Java 24
Yann-Ga谷l Gu辿h辿neuc
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recapMarketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
BradBedford3
Software Ideas Modeler Ultimate 14.62 free
Software Ideas Modeler Ultimate 14.62 freeSoftware Ideas Modeler Ultimate 14.62 free
Software Ideas Modeler Ultimate 14.62 free
alihamzakpa025
Custom AI Chatbot Development Services.pdf
Custom AI Chatbot Development Services.pdfCustom AI Chatbot Development Services.pdf
Custom AI Chatbot Development Services.pdf
Belitsoft
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
WSO2
Evolving Scala, Scalar conference, Warsaw, March 2025
Evolving Scala, Scalar conference, Warsaw, March 2025Evolving Scala, Scalar conference, Warsaw, March 2025
Evolving Scala, Scalar conference, Warsaw, March 2025
Martin Odersky
Cadence Fidelity Pointwise Crack 2024.1 Full version 2025
Cadence Fidelity Pointwise Crack 2024.1 Full version 2025Cadence Fidelity Pointwise Crack 2024.1 Full version 2025
Cadence Fidelity Pointwise Crack 2024.1 Full version 2025
madni07kp
GraphPad Prism 10.3.0.507 Crack Free Download
GraphPad Prism 10.3.0.507 Crack Free DownloadGraphPad Prism 10.3.0.507 Crack Free Download
GraphPad Prism 10.3.0.507 Crack Free Download
madni07kp

Programming basics

  • 2. How does a program run? Step 1 Write lines of codes. Step 2 Compile. Step 3 Execute. Step 4 Get the output.
  • 3. IDE vs Compiler IDE Integrated Development Environment Compiler translates to machine level(01010)
  • 4. A basic C program
  • 5. Hello World in Detail : stdio.h is a header file #include is a preprocessor directive. int main() : where the program execution begins. { and } symbols mark the beginning and end of a block of code. return 0; terminates the main() function
  • 6. Identifiers name given to entities such as variables, functions. Example - int money ; int money; Here, money is identifier. must be different from keywords
  • 7. Keywords predefined, reserved words. Example : int money; int is a keyword .
  • 8. Variable a variable is a container to hold data. Example: int score = 95;
  • 9. Rules for naming a variable can have letters , digits and underscore only. The first letter of a variable should be either a letter or an underscore
  • 11. Integer positive and negative values but no decimal values. Eg : 0, -5, 10 . Int id ; Here, id is a variable of type integer. Int id,age;
  • 12. Floating types can hold real numbers such as: 2.34, -9.382, 5.0 etc. float price; // 4 bytes size double price; // 8 bytes size Both are floating types.
  • 13. Character types Keyword char is used for declaring such variables. char test = 'h'; test is a character variable. The value of test is 'h'. No string type in C . alternative = char array Eg: char num[ ] = hello
  • 14. I/O in C programming Two commonly used functions are printf() and scanf(). Function scanf() reads input. Function printf() prints output.
  • 15. Format specifiers and ampersand scanf("%d,&a); for int , &a means the address of variable a scanf("%f,&a); for float Scanf(%c,&ch); Scanf(%s,&word); printf("%d is value of a",a);
  • 16. Operators to perform tasks including arithmetic, conditional and bitwise operations Types : 1. Arithmetic Operators 2. Increment and Decrement Operators 3. Assignment Operators 4. Relational Operators 5. Logical Operators 6. Others (Conditional,Bitwise and Special Operators)
  • 18. Increment and decrement operators Increment ++ increases the value by 1 Decrement -- decreases the value by 1 Example : int a=5; a++ . value of a is now 6 Similarly, for a-- , a is 4
  • 19. ++ and -- operator as prefix and postfix Postfix a++ original value of a is returned first then, a is incremented by 1. Prefix ++a value of a is incremented by 1 then, it returns the value.
  • 23. Decision Making If else Nested if else Loops
  • 24. if and if else statement 1 . if (testExpression) { // statements } 2 . if (testExpression) { // codes inside the body of if } else { // codes inside the body of else }
  • 25. Flowcharts of if and if else
  • 26. Nested if...else statement if (testExpression1) { // statements to be executed if testExpression1 is true } else if(testExpression2) { // to be executed if testExpression1 is false and testExpression2 is true } ... else { // statements to be executed if all test expressions are false }
  • 27. Loops are used to repeat a specific block of code. Types - 1 . for loop 2 . while loop 3 . do while loop
  • 28. For loop for (initializationStatement; testExpression; updateStatement) { // codes }
  • 32. Do while loop do { // codes } while (testExpression);
  • 34. Break and continue statement Break terminates the loop Continue skips some statement Syntax : break; continue;
  • 36. Switch case switch (n) { case constant1: // code to be executed if n is equal to constant1; break; case constant2: // code to be executed if n is equal to constant2; break; . . . default: // code to be executed if n doesn't match any constant }
  • 37. Functions a block of code that performs a specific task. Two types of functions : 1 . User defined functions 2 . Standard library functions
  • 38. Standard library functions built-in functions handle tasks such as mathematical computations, I/O processing, etc. Example : printf() and scanf()
  • 40. Advantage of user defined functions Clean,easier to maintain. Reusability. Easy to debug.