RUVIDEO
Поделитесь видео 🙏

First Welcome C Program - Key Concept ( Beginners)

📁 Обучение 👁️ 17 📅 23.10.2024

First Welcome C Program - Key Concept ( Beginners)
Table of Content
- Click & go to directly on the part of video
0:25 Introduction
3:14 Theory Presentation

Contact Us
- For future reference :
9798819921 - what's app
[email protected]
https://stctuts.blogspot.in - Our Blog
https://twitter.com/SoftTech_Campus - Twitter* Windows

*************************** Video Detail ***************************
First program

void main()
{
clrscr();
printf(“Welcome ! to C Programming Language”);
getch();
}
Points to be noted
C programming language is a procedural programming language.
It is a collection of functions and keywords. For each work there is a function. We need to know about these function to develop C program.
These related functions are stored in a file. These files are known as header file.
Ex. Stdio.h, Conio.h, Math.h and more
As other languages, C programming language has some reserve words and defined rules for using these reserve words.
Ex. #include – It is a reserve word of C. It is used for include header files in C Program. The rules / syntax for using this reserve word is as follows.

Among all library function there is a main function. It is starting / first executing function. It is known to the C compiler that the program has to start from the main function. The syntax of main function is as follows.
void main()
{
Code Block of main function;
Each line in this block is known as statement
Each statement must be terminated with semicolon ( ; )
}
Output Function in C:
printf(-) is used for displaying output in C Program. It is stored in stdio.h header file. So, we need to include their header file in our program.
Example :
printf(“Welcome ! to C Programming Language”);

Other Important Function for First Program:
clrscr() is used for clearing the output screen of C Program. It is stored in conio.h header file.
getch() is used for taking a character input. But we can use this function to hold the output screen. This function belongs to conio.h header file.
Home work
Write all above theory of C’s First Program in your copy.
Understand and remember all above theory.


Next topic to be discussed
Reserve Words of C Programming Language
Input Function in C Programming Language.

-~-~~-~~~-~~-~-
Please watch: "Type Cast Operator in C++ (static_cast ऑपरेटर के बारे में जानें ...)"
https://www.youtube.com/watch?v=RYjOzfo3w78
-~-~~-~~~-~~-~-

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «First Welcome C Program - Key Concept ( Beginners)», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.