SUBMITTED BY
DR.G.AMBIKA
ASST.PROF OF IT
BON SECOURS COLLEGE FOR WOMEN,
THANJAVUR
PROGRAMMING IN C
DECISION MAKING
AND LOOPING
DECISION MAKING AND
LOOPING
DECISION MAKING:
decision making statement in
programming language help the programmer to
transfer the contral from one part to other part of
the program.
What is looping?
 The iteration control structure are
used for repeatively excuting a block
of code multiple times,until the
condition is false.
looping
For loop
While
loop
Do while
looping
For loop;
 It is “Entry controlled loop”.
SYNTAX:
for(initialization:test condition ;in/dc)
{
statement;
}
program:
#include<stdio.h>
#include<conio.h>
Void main ( )
clrscr( )
for(int a=0,a<=10,a++)
{
printf(“%dn”,a);
}
getch( );
}
While loop:
 A while loop execute stmt repeatedly
until condition is false.
SYNTAX:
While(condition)
{
stmt;
}
program:
#include<stdio.h>
#include<conio.h>
Void main( )
{
int n=1;
clrscr( );
while(n)
{
printf(“n%d”,n);
++n;
}
getch();
}
Do while loop:
 Do while loop excute the statement first
after that it check the condition .
SYNTAX:
do
{
state;
}
while(condition);
Program:
#include<stdio.h>
#include<conio.h>
Void main()
{
clrscr( );
do
{
print(“hello guyst”)
}
while(5):
{
printf(“bye guys”);
}
getch( );
}

More Related Content

PDF
Unit II chapter 4 Loops in C
PPTX
Loops in C Programming Language
PPTX
Loops in C.pptx
PPTX
etlplooping-170320213203.pptx
PDF
EE171_Lecture_5_Decision-Making_Loop-Statements.pdf
PPTX
C Programming - Decision making, Looping
PPT
Decision making and looping
Unit II chapter 4 Loops in C
Loops in C Programming Language
Loops in C.pptx
etlplooping-170320213203.pptx
EE171_Lecture_5_Decision-Making_Loop-Statements.pdf
C Programming - Decision making, Looping
Decision making and looping

Similar to decision making in c.pptx (20)

PPTX
Control Structures in C
PPTX
Bsc cs pic u-3 handling input output and control statements
PPTX
Loops in c programming
PDF
4_Decision Making and Branching in C Program.pdf
PPTX
Diploma ii cfpc u-3 handling input output and control statements
PDF
Chapter 3 - Flow of Control Part II.pdf
PPTX
CONTROL STMTS.pptx
PDF
04-Looping( For , while and do while looping) .pdf
PPTX
handling input output and control statements
PDF
Decision control and iterative statements
PPTX
Btech i pic u-3 handling input output and control statements
PDF
Loops in C Programming | for Loop | do-while Loop | while Loop | Nested Loop
PPTX
Control and conditional statements
PPTX
Mca i pic u-3 handling input output and control statements
PPTX
Managing input and output operations & Decision making and branching and looping
PPTX
LOOPING IN C- PROGRAMMING.pptx
PDF
175035-cse LAB-04
PPTX
C Programming Unit-2
PPTX
All type looping information and clearly
Control Structures in C
Bsc cs pic u-3 handling input output and control statements
Loops in c programming
4_Decision Making and Branching in C Program.pdf
Diploma ii cfpc u-3 handling input output and control statements
Chapter 3 - Flow of Control Part II.pdf
CONTROL STMTS.pptx
04-Looping( For , while and do while looping) .pdf
handling input output and control statements
Decision control and iterative statements
Btech i pic u-3 handling input output and control statements
Loops in C Programming | for Loop | do-while Loop | while Loop | Nested Loop
Control and conditional statements
Mca i pic u-3 handling input output and control statements
Managing input and output operations & Decision making and branching and looping
LOOPING IN C- PROGRAMMING.pptx
175035-cse LAB-04
C Programming Unit-2
All type looping information and clearly
Ad

Recently uploaded (20)

PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
August Patch Tuesday
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PDF
Getting started with AI Agents and Multi-Agent Systems
PDF
DP Operators-handbook-extract for the Mautical Institute
DOCX
search engine optimization ppt fir known well about this
PPTX
observCloud-Native Containerability and monitoring.pptx
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
Five Habits of High-Impact Board Members
PDF
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
PDF
A comparative study of natural language inference in Swahili using monolingua...
PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PPT
Geologic Time for studying geology for geologist
PPTX
Tartificialntelligence_presentation.pptx
PDF
Enhancing emotion recognition model for a student engagement use case through...
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
August Patch Tuesday
O2C Customer Invoices to Receipt V15A.pptx
Getting started with AI Agents and Multi-Agent Systems
DP Operators-handbook-extract for the Mautical Institute
search engine optimization ppt fir known well about this
observCloud-Native Containerability and monitoring.pptx
Hindi spoken digit analysis for native and non-native speakers
Five Habits of High-Impact Board Members
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
Assigned Numbers - 2025 - Bluetooth® Document
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
A comparative study of natural language inference in Swahili using monolingua...
Taming the Chaos: How to Turn Unstructured Data into Decisions
A novel scalable deep ensemble learning framework for big data classification...
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
Geologic Time for studying geology for geologist
Tartificialntelligence_presentation.pptx
Enhancing emotion recognition model for a student engagement use case through...
Ad

decision making in c.pptx