Find A day in week program Part 46 | C Programming #coding

preview_player
Показать описание
👉 🧑‍💻 c program to Find A day in week using array C Programming#coding 🔥 Part 46

in this C Programming language sample program you will learn to write a C Program to Find A day in week using if else entered by the user ( c program to Find A day in week using if else in C language )

Here we are displaying the message to user using printf function and we are taking user input using scanf function

Program For Print Hello World

C basic Program Series

HTML Tutorial

Please Like and subscribe this Channel

#clanguage #cprogramming #programming #languagelearning #programming #coding #cprogram #cprograms #cbasicprogram #LearnCoding #shorts #youtubeshorts #youtubeshort #shrtscodeing #trendingshorts #viralshorts #viralshort #viralshortvideo #viralvideos #coding #codeindia #weekdays #weekdayreading
Рекомендации по теме
Комментарии
Автор

arr = ["Monday", ..., "Sunday"]
n = int(input("set a number between 1-7"))
if n > 0 and n < 8:
print(arr[n])
else:
print("What are you doing man?")

ftaeh