Skip to main content

1. The Complete C Programming Course for Beginners

The Complete C Programming Course for Beginners


 



About this course: -C Programming: The Fundamentals of C Programming Language from Ground UP with Illustrated + Hands-on Coding Explanation.


                                      1. INTRODUCTION of  C

This is the first video about the basic introduction of the c programming language.

What is C Programming Langauge?

C is a general-purpose programming language that is extremely popular, simple, and flexible to use. It is a structured programming language that is machine-independent and extensively used to write various applications, Operating Systems like Windows, and many other complex programs like Oracle database, Git, Python interpreter, and more.

It is said that 'C' is a god's programming language. One can say, C is a base for the programming. If you know 'C,' you can easily grasp the knowledge of the other programming languages that uses the concept of 'C'.

Please subscribe to my blog for more c programming video lectures.


2.The Complete C Programming Course for Beginners:-

 Basic Structure of a C Program                                 

 



About this course:- C Programming: The Fundamentals of C Programming Language from Ground UP with Illustrated + Hands-on Coding Explanation.

 

                                The basic structure of the c Program

This is the second video in which it explained the basic structure of c programming language.

Please subscribe to my blog for more c programming video lectures.


3.OUR FIRST C PROGRAM:--

In this video, we're going to write a program that will print Hello World--
This is your first program in c so please understand it batterly--






please comment if you have any doubt

********


4..in this video, I'm going to talk  

about this line.--

What do you think about this crazy-looking Syntex?

And let's not talk about it deeply. In this video, I talk about

#include<stdio.h>,If we don't include this line here#include<stdio.h>, then simply can't use this printed 




 thanks for watching this video please subscribe and comment if you have any doubts
thankyou.........................................................................


5..Hii, everyone In this video we talk about, How a C Program execute:-

we're going to talk about how is the program actually run?


thanks for watching

6.In this video, we're going to be talking about data types and variables:--







so please watch till the end 

7. In this video, we're going to talk about 
the naming convention of a variable:--



if you have any doubt please comment
and subscribe code_with_chandan
8.
In this video, we're going to be talking about the printing value of a variable:--

so let's start:----


 thanks for watching this video

9.in this video we're going to talk about constant in programming:-----

values that the program cannot change during its execution.


thanks for watching ::::::::::::------------------------------

10..In this video, we're going to be talking about how character is stored in computer memory:--



11.In this video, we're going to be talking about how integer is stored in
 computer memory.


12.Welcome back.

In this video, we're going to be talking about  "IEEE" single  precision and double precision




please watch till end 

13..Welcome back:--------

In this video, we're going to be talking about how float is stored in computer memory 




14...In this video, we're going to talk about how double is stored in a computer:--



15..in this video we're going to talk about signed and unsigned integer::----



16..In this video, we're going to be talking about different types of the operator in C programming:: ----



17..in this video, we're going to be talking about assignment operator:--






please watch till end    ,........................








Comments

Popular posts from this blog

Calculate the sum of elements in an array.

  HOW TO CALCULATE THE SUM OF THE ELEMENT IN A GIVEN ARRAY: - We will learn how to find the sum of elements in an array is an easy task when you know how to iterate through array elements. In this problem, we will explain your C approach to find the sum of array elements inputted by the user. Here is the solution to this query in C Languageguage.   ALGORITHMS: STEP 1:-   Input the size of the array and store the value in m and arr[m]. STEP 2 : - To store the sum of array elements, initialize a variable sum = 0. STEP 3: -To find the sum of all elements, iterate through each element  and add the current element to the sum. STEP 4: - Inside the loop add the current array element to sum i.e.                 sum = sum + arr[i] or sum += arr[i]. CODE:- #include <stdio.h> int  main() {      int  i,num,a[ 100 ],sum= 0 ;     printf( "Enter the value of number:...

C Program to Check Year is a Leap Year or Not

How to Check Year is a Leap Year or Not in C:- In this program we have to find the year is a leap year or not. Generally  we assume that year is exactly divisible by 4 is a leap year. But it is not only in this case 1900 is divisible by 4. But it  is not a leap so it that case we follows these conditions    It is exactly divisible by 100 If it is divisible by 100, then it should also exactly divisible by 4 And it is divisible by 400   These all conditions are true year is a leap year. ALGORITHMS:- Step 1 . Initialize variable “year” to find leap year. Step 2 . Take input from User. Step 3 . We use this condition ((year%4==0)&&            (year%100!=0)) || (year%400==0)) to check the year is Leap or not. S tep 4 . It is true display year i...

Top 10 Secure Computing Tips

Top 10 Secure Computing Tips:-   "Top 10" List of Secure Computing Tips Tip #1 - You are a target to hackers Don't ever say, "It won't happen to me." We are all at risk and the stakes are high - both for your personal and financial well-being and for the university's standing and reputation.  Cybersecurity is everyone's responsibility. By following the tips below and remaining vigilant, you are doing your part to protect yourself and others. Tip #2 - Keep software up-to-dat e Installing software updates for your operating system and programs is critical. Always install the latest security updates for your devices: Turn on Automatic Updates for your operating system. Use web browsers such as Chrome or Firefox that receive frequent, automatic security updates . Make sure to keep browser plug-ins (Flash, Java, etc.) up-to-date. Tip #3 - Avoid Phishing scams - beware of suspicious emails and phone calls Phishing scams are a constant threat - using variou...