Introduction to Operators in C

preview_player
Показать описание
C Programming & Data Structures: Introduction to Operators in C
Topics discussed:
1. The need for operators in C.
2. Different types of operators supported in C.

Music:
Axol x Alex Skrindo - You [NCS Release]

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

This channel is gold mine for engineering 🙏🙏

dennyage
Автор

Neso academy is the best channel for all technocrats❣️

iambhushan
Автор

0:30 the value would be imean code would be
//write a program to find to find the area of the rectanglar garden provided that the length
//of the rectangular garden is 15 meters and 10 meters breadth
main()
{
int b=10, l=15, r;
printf("enter the value of the l, b=");
r=l*b;
printf("%d", r);
}

manideep
Автор

The code to find the area of triangle
// PROGRAM TO FIND THE AREA OF THE RECTANGLE
#include<stdio.h>
int main()
{
int length, breath, area;
printf("Enter the length of the rectangle \n");
scanf("%d", &length);
printf("Enter the Breath of the rectangle \n");
scanf("%d", &breath);
area = length*breath;
printf("%d", area);
return 0;
}

atharsayed
Автор

My favorite channel ever to equip myself with all computer science and engineering fields. Thank you very much and god bless you.

abdialemu
Автор

all the doubts and confusions i had are cleared because of your videos.

SubhamKumar-mryo
Автор

The best channel for learning c Progoramming.

OK-ceuo
Автор

The answer for all the questions

#include <stdio.h>


int main()
{

float l, b, result;
printf("The length of the rectangle is :\n ");
scanf("%f", &l);
printf("The breadth of the rectangle is :\n");
scanf("%f", &b);

result = (float) l*b;
printf("The Area of the triangle is %.2f unit square\n", result);

unsigned int cmp1, cmp2;

printf("Company 1's annual turnover is: ");
scanf("%u", &cmp1);
printf("Company 2's annual turnover is: ");
scanf("%u", &cmp2);
if (cmp1>cmp2){
printf("Company 1 has more turnover than company 2\n");
}
else{

printf("Company 2 has more turnover than company 1\n");
}
int chr1, tbl;
printf("Do you have a chair, if yes put 1 if no put 0 :\n");

scanf("%d", &chr1);

printf("Do you have a table, if yes put 1 if no put 0 :\n");

scanf("%d", &tbl);

if (chr1 == 1 && tbl == 1){

printf("You can go study");
}
else {

printf("You can go to sleep");
}

return 0;

}

gdeepakkrishnaa
Автор

Thank you sir
Your explanation is crystal
I love your explanation ❤❤❤

d.v
Автор

no words to appreciate ur thanks to u man....

_khushboochauhan
Автор

The most insane C tutorial ever I've seen on YouTube. I just went gaga over this tutorial.

mdghufranalam
Автор

Your are the best and your teaching is very easy to understand sir..thank you sir.

SANTHOSHKUMAR-pxyt
Автор

one of the best video i have seen . great sir . so nice video sir.

geniusgamer
Автор

Why is & written twice in bitwise 4:19 and in other 5:03 operators?
Is it called 'bitwise and' and 'ampersand' both?
The how is it differentiated?

pr.yanshi
Автор

tnq so much from ur channel ive learnt a lot and its helping me for tomorrows exam.

geethayarashi
Автор

U r doing a great job u r the best....

deepakbhardwaj
Автор

I just wish I had that kind of garden in my house. :D

aryabhatt
Автор

Thank you for helping me to study c language

vcreations
Автор

Please upload loop, function, array and pointer video with its example also😊

sushantpoudel
Автор

Please sir complete full c and data structure soon

ashamishra