#42 C programming | switch case | #c_language #coding #teach_techno #c_programming_for_beginners

preview_player
Показать описание
C programming | switch case | #c_language #coding #teach_techno #c_programming_for_beginners

Thanks for watching 🙏

follow others programming videos

____________________________________________
📌About C:
The C language is developed by Dennis Richie in 1972 at the "Bell Laboratories" for creating system application that directly interact with the hardware devices.C is the most widely used computer language.
____________________________________________
📌Why to learn C programming :
C programming language is a must for student and working professionals to become a great software engineer specially when they are working in software development domain. I will list down some of the key advantage of learning C program ming:

Easy to learn
structured language
It products efficient programs
it can be handle low-level activities
it can be compiled on a variety of computer platforms.
____________________________________________
📌Fact about C:

C was invented to write an operating system called Unix.

C is a successor of B language which was introduced around the early 1970s

#c_language
#c_programming
#YouTube_shorts
#shorts
#short_video_viral
#C_programming
#c_programming_for_beginners
#C_programming_full_course
#computer_programming
#teach_techno

____________________________________________
Topic Covered:
1.Basic structure (print "star")
2.Basic structure (12345)
3.How to make Analog Clock.
4.Use two input for Addition Number
5.#For_Loop
6.#While_loop
7.#Do_while_loop
8. #Structure
9. #reverse_program
10. upper and lower number
11. result create in structure
12. #if_else_program
13.#Array_program
14.Border_printing_Love
15.Array Reverse Programming
16. Array squaring index number
17. Basic pattern
Рекомендации по теме
Комментарии
Автор

Sir thank you so much muje ye assignment Mila thaa ❤😅

jzuolsw
Автор

You was leaved a case for sunday. And all the best

shyamsundar
Автор

Which key pad we can use in Android phone

tejaswimende
Автор

Sunday 😂 kha he
Vo Holliday mana ra 😢

Shivank.Pal.
Автор

In videos it looks simple (which is indeed) but in "42 school" it is way more difficult

akhmadjonsolikhov
Автор

Use switch(1, 2, 3, 4, 5, 6, 7), then it will work properly

chaitanyabelekar
Автор

Cool but you can clean code with dictionary instead of switch.

_____JUNPark_____
Автор

Are bro galat time apke video suggest hue 😭😭 college me iske upar hw diya tha mujhe bin dekh ke karna tha

tejassawant
Автор

//print week day wise using switch case
#include <stdio.h>
#include <conio.h>
void main()
{
int 1;
c1rscr();
printf("Enter the week day :");
scanf("%d" ‚&1);
switch(1)
{
case 1:
printf("Sunday");
break;

case 2:
printf("Monday");
break;

case 3:
printf("Tuesday");
break;

case 4:
printf("Wednesday");
break;

case 5:
printf("Thirsday");
break;

case 6:
printf("Friday");
break;

case 7:
printf("Saturday");
break;

default:
printf("Put Wrong Number :");
}
getch();
}

Is this right code shows error pls fix it

vbqpmvm