C_20 Operators in C - Part 8 | Comma Operator | C Programming Tutorials

preview_player
Показать описание
In this video, We will learn:
What is Comma Operators
Working of Comma Operator

*******************************************

Connect & Contact Me:

*********************************************

More Playlists:

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

Ma'am hats off to ur knowledge, i m ur student from last one year and very glad nd thankful for everything u taught us....thank you so much from the depth of my heart....🙏🏿🙏🏿🙏🏿🙏🏿

sanilshekhawat
Автор

Thanks a lot This is the best videos on operators I have seen ever.

harshitsatya
Автор

value of a=10, value of b=2 ;, by following the right shift shortcut mathod

SandeepSingh-xnby
Автор

Answer is 2
for b=(a++, ++a, a>>2)

nithinreddyannem
Автор

kindly Request . To Pls Make Videos on Python As soon as possible mam ❤️ . Because we are Addicted to u 🙏☺️

shacks
Автор

11:48 jenny5 (output) since word jenny has five letters, so the output is jenny5.

srvocals
Автор

12:49
a = 2
b = 2
a = 2 because the value of a will also be updated to 2

misturaojulari
Автор

(a++, ++a, a>>2); == 2 because first value will be avoided and last value will be stored in the computer memory.

divya_barge
Автор

Ma'am I like ur video very much the English language you used is very easy and understandale to me mam you are awesome👏✊👍 mam from where you did your graduation?
Which books you studied and please also reccomend us book

kavisingh
Автор

10:02
int a;
a = printf ("Jenny"), 2, 3, 4;
Ans: Jenny
2
Because initialisation is already done in first step and after printf and comma is used so it doesn't show error

Anjali-ektj
Автор

int a = 8; in binary it means 00001000
And a >> 2 means that we'll eliminate the first 2 bits and then it will be = 2 in decimal ✅👌

Liam-
Автор

b=(a++, ++a, a>>2)
Output =2

vanshikagarg
Автор

madam thanks i cleared my concept.., post and pre for inc and dec..

ganesh_nama
Автор

10:05 it will give error
12:25 it will give a=10 and b=2 because b is 2.5 but as we are writing integer, so float value will be neglected

noone
Автор

Mam ur DS playlist really helped me a lot for exam prep... please make a playlist for Computer architecture also mam... the subject sounds so vague pl help mam... 🙏🙂

nithiya
Автор

b=(a++, ++a, a>>2)
the Answer will be 2.
mam you are good teacher thnks for your healping.

fuadhamedmohamed
Автор

#include<stdio.h>

int main()
{ int a;
a=printf("jenny"), 2, 3;
printf("%d", a);
return 0;
}
/*output : jenny5
Mam here I got jenny along with 5 I think we are using format specifier %d and data type int...so it give the length of the string */

cricket_addicted_guys
Автор

you have solved my doub't... i'm gathering here and there for the answer but didn't get
int a= (2, 7, 9) o/p = 9....*but finally i got my answer.. thank you mam*

luckybanthia
Автор

12:10 how a++ becomes 9 ?
It is a post increment na so 8 should be assigned na 🤔🤔

SadhanaSharma
Автор

Thank you mam for your kind information for c programming tutorials thanks a lot mam

PavaniGummadipudi-otkn