top of page
Writer's pictureRajesh Singh

C Program for Traffic Light using Switch Case

C Program for Traffic Light



#include <stdio.h>

#include<conio.h>

Void main ()

{

char colour;

printf ("Enter the colour of the light (R,G,Y): ");

scanf ("%c", &colour);

switch (colour)

{

case 'R':

case 'r':

printf ("STOP \n");

break;

case 'Y':

case 'y':

printf ("WAIT\n");

break;

case 'G':

case 'g':

printf ("GO \n");

break;

default:

printf ("The colour is not valid \n");

}


getch();

}



3,652 views1 comment

Recent Posts

See All

1 Comment


Lakshmi sree Kesanapalli
Lakshmi sree Kesanapalli
Nov 24, 2023

Algorithm

Like
bottom of page