Part 2 | Variables Datatypes & I/O Operations | C Programming Malayalam Tutorial

preview_player
Показать описание

We hope you will enjoy today's tutorial and please provide your valuable feedback in the comment section.

Part 2

08:20 What is programming
11:47 consoled output
15:40 output
15:47 printf
19:50 input
21:23 variable
23:13 integer
23:25 Float
23:38 character
23:45 Data type
24:47 Declaration
26:01 Initialization
27:55 scanf
40:43 sum
49:18 operators
49:34 Arithmetic operator
49:48 Relational operator
50:00 Logical operator
50:25 Assistant operator

How to Find Your Passion:

High-Paying Tech Careers in 2020:
(This video will help you in choosing a domain)

How To Get a High-Paying IT Job:

Today’s assignment:

#100K Coding Challenge is a series of 10 programming tutorial videos in Malayalam which is an initiative by Team Brototype (Former Crossroads) to teach programming in the simplest possible manner to 1 lakh students across Kerala completely FREE of cost.

Certificates will also be issued to candidates who complete the whole 10 videos and pass the Test successfully.

Video tutorials will be uploaded and published on our Brototype Malayalam (Former Crossroads) YouTube channel.

Participants are requested to subscribe and enable notification on our YouTube channel in order to get the tutorial videos as soon as they are released.

About us:

Subscribe to Kerala's top tech-career YouTube channel and gain access to free programming tutorials and tech-career videos in Malayalam. This channel will help you gain skills and knowledge to build a high-income career in the IT field.

Enroll in our 7-month offline training program, 'Brocamp', to study coding and other skills in an office environment. Pay the training fee after placement.

To know more about Brocamp, Visit:

For any inquiries & updates:
Call/Whatsapp us at 7034395811

#programming
Рекомендации по теме
Комментарии
Автор

Coding പഠിക്കണമെന്ന മോഹമായി ചെന്നുപപ്പെട്ടത് Nikhil Sir എന്ന സിംഹത്തിന്റെ മടയിലാണ്.

clx
Автор

പ്രോഗ്രാമിംഗ് പഠിക്കണം എന്നുള്ള എന്റെ ആഗ്രഹം ഒരു 15 വർഷത്തിനു ശേഷം ഇന്ന് നടപ്പിലായി, ചെറിയ കോഡിലൂടെ വളരെ എളുപ്പത്തിൽ മനസ്സിലാക്കിത്തരുന്ന സാറിന് ഒരുപാട് നന്ദി

techpassions
Автор

A small correction for who are learning right now

#include <stdio.h>
#include <stdlib.h>

int main(void) {
int a;
setbuf(stdout, NULL);
printf("Enter first number");
scanf("%d", &a);
printf("you have entered :%d", a);

return EXIT_SUCCESS;
}

setbuf(stdout, NULL); You have to add this line of code after variable declaration else you will face some difficulties in output.
like printf will not display anything but it will wait for your values.

JinilSPVlogs
Автор

Nikhil Sir teaches very well and I feel like we wasted theses many days thinking that we cannot learn these skills. Good work sir. May God bless you all and please continue.

TIJOTHOMAS
Автор

#include <stdio.h>
#include <stdlib.h>

int main(void) {
int a = 20, b = 30;

a = a + b; // Add a and b and store the result in a
b = a - b; // Subtract b from the new value of a and store the result in b
a = a - b; // Subtract the new value of b from the new value of a and store the result in a

printf("a:%d b:%d", a, b);
return 0;
}

munawar
Автор

ആർക്കും എളുപ്പം മനസിലാകുന്ന തരത്തിൽ, ചിരിച്ചു കൊണ്ടുള്ള ക്ലാസ് എളുപ്പം മനസിലാകാൻ സാദിക്കുന്നു🙏

rijofrancis
Автор

swapping 2 numbers without using 3rd variable
int main(void) {
setbuf(stdout, NULL); //for windows
int a=20, b=30;
a=a+b;
b=a-b;
a=a-b;
printf("a:%d b:%d", a, b);
return EXIT_SUCCESS;
}

TeenaIju
Автор

ഇത്രയും ആത്മാർത്ഥമായി വളരെ ഇൻഫോർമാറ്റിക്കായി താങ്കൾ എടുക്കുന്ന ഈ ക്ലാസ്, നിസ്സംശയം, ഒരു പാട് ഒരു പാട് പേർക്ക് പ്രയോജനപ്പെടും.
ലൈവ് ആയി ചലഞ്ചിൽ പങ്കെടുക്കാൻ കഴിയാത്തതിൽ ഖേദിക്കുന്നു.

Falcon-ifcs
Автор

#include <stdio.h>
#include <stdlib.h>

int main(void) {
int a=50, b=100;

printf("a:%d b:%d", b, a);

return EXIT_SUCCESS;
}

a:100 b:50

jamshidt
Автор

Sir 4 year btech padichitt programing onm manasilaayitilernnu, but ee orotta video kandathode programing basics elaam manasilaai, enkm cheyaan kazhiym enna confidence vannu

Thank u so much sir

God bless u

Kkk-g
Автор

I am a plus two bioscience student. I love to learn programming and I love your class. Thankyou sir

avenuejojujoju
Автор

Best opportunity for beginners to learn coding, Especially for college students and those who planning to start career in IT

saheermalayil
Автор

#include<stdio.h>
void main(){
int a=1, b=2;
a = a+b; //Without using temporary variable
b = a-b;
a = a-b;

printf("a:%d b:%d", a, b);

}

dilju
Автор

Swapping ന്റെ code ഇത്രകാലം കാണാതെ പഠിച്ചു വെച്ചിരിക്യായിരുന്നു. ഇപ്പോഴാ അതിന്റെ logic മനസിലായത്. 👍🤩

afseenaa
Автор

We can use either addition logic or subtraction logic
1. subtraction logic
int a=20, b=50;
a = a-b;
b = a+b;
a = b-a;

2. addition logic
int a=20, b=50;
a = a+b;
b = a-b;
a = a-b;

friday
Автор

// swap two numbers without using the third variable
a = a+b;
b = a-b;
a = a-b;

suhaibmt
Автор

Bro toooo exiting, ,
Actually I am Network engineer last 10 years
, Programming padikkaname ennundaai
Ningale vedio kandaan ippo padikkunne thanks alot

StreatWalk
Автор

Swapping two no's without using a third var
assign a=10, b=5;
a=a+b; //15
b=a-b;//15-5=10
a=a-b;//15-10=5

aishwaryasajeevan
Автор

I started this course on the last day. Today I had completed my assignment of this session. Thank you so much, sir.

kukkuru
Автор

if you have issues with printf not seperating lines or if everything displayed after entering a value then add setbuf(stdout, NULL); after variable declaration .That is after .example- int a, b, sum;

jhampa