C_72 Pointers in C- part 2 |Address of(&) and Indirection (*) operator in Pointers I C Programming

  Рет қаралды 368,973

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 413
@Chris-vt6nl
@Chris-vt6nl Жыл бұрын
Today is March 1st which is your birthday wish your a very happy birthday🎂🎂the best programming teacher on youtube
@Masti.Wallah
@Masti.Wallah 8 ай бұрын
Ur birthday is also come on 1st March!
@mdparvezquraishi8412
@mdparvezquraishi8412 3 жыл бұрын
Mam you deserve the word "Teacher" !!!!
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/pYjXmq2lrL-MeMU
@abishekhrajendhran8157
@abishekhrajendhran8157 2 жыл бұрын
Perfectnaa!
@RAHULRAJ-nq8mw
@RAHULRAJ-nq8mw 2 жыл бұрын
world teacher not word
@meme_Overflow
@meme_Overflow 2 жыл бұрын
She is a teacher indeed lol!
@dornalameghana1972
@dornalameghana1972 2 жыл бұрын
yes
@chinweokwugiftchiedozie1587
@chinweokwugiftchiedozie1587 Жыл бұрын
c = *q; *p = 20; Output would be c = 9 and a = 20. While p = the address of a in a hexadecimal form
@SandipBhattacharya
@SandipBhattacharya Жыл бұрын
Great video, thanks, Jenny. So, there are two pointer operators: * and &. The & is a unary operator, called “Address of” or “Reference operator” that returns the memory address of its operand. For example, j = &i; assigns the address of i into j. This address is the computer's internal location of the variable in memory. It has nothing to do with the value of i. You can think of & as returning "the address of". Therefore, the above assignment statement can be expressed as "j receives the address of i". The second pointer operator, *, called “Value at address” or “Dereference operator” or "Indirection operator" is the complement of &. It returns the value located at the address that follows. For example, if j contains the memory address of the variable i, k = *j; copies the value of i into k. Hope that was helpful. :)
@chidiebereemereuwa9306
@chidiebereemereuwa9306 Жыл бұрын
Excellent explanation
@sparkx18
@sparkx18 10 ай бұрын
Yes Thank You 🙏❤️ Nice Explanation 🙏❤️👏
@SumitKumarofficial36
@SumitKumarofficial36 2 жыл бұрын
C= 9 a= 20 p=ADDRESS OF A IN HEX FORM
@herohera3497
@herohera3497 Жыл бұрын
you summed it perfectly...but why have to written c
@universe449
@universe449 Жыл бұрын
Here value of a is incorrect
@sakibishraq221
@sakibishraq221 Жыл бұрын
@@universe449 why??
@jayaramkumar5148
@jayaramkumar5148 Жыл бұрын
They didn't declare a value of C then how will you assign the value of C is 9?
@ny_reve
@ny_reve Жыл бұрын
Could you please explain to me, why p will be the address of a (in hex form)? why specifically in hex format?
@19_jothikams23
@19_jothikams23 3 жыл бұрын
Ans C=9 a=20 P= address of a in hexadecimal format
@anuragmalviya2397
@anuragmalviya2397 3 жыл бұрын
Value of a might be 10 only as ma'am has written %d then a and in the starting of prog value of a is 10.
@praveensamuel8083
@praveensamuel8083 3 жыл бұрын
here a=*p, so the value of a is 20 only here we are assigning new value to *p so the value of a is 20 ... correct me if I'm wrong 😶
@keenkumar5134
@keenkumar5134 2 жыл бұрын
*p= 20; i.e value at address of a(here 1000) so *(1000) = 20 or simply a= 20
@neelirahul7892
@neelirahul7892 2 жыл бұрын
@@praveensamuel8083 bro a=*p is not declared at all How can you say that it's out put is 20 . It's 10 for sure
@juryrigging
@juryrigging 2 жыл бұрын
​@@neelirahul7892 Nope, a = 20. Look again at the second original printf statement: printf ("a = %d", *p) , 10 It's an instruction to print "a =" value of *p. It was written to show you that this is so, even though it isn't formally declared. a = *p is inferred from p = &a: a = 10, p = &a p points to the address of a (&a). *p points to the value held at &a. &a is the location that holds the value of a. *p points to the value of a. a = *p *p = 10 Both a and *p are the same data stored in memory at &a, so cannot be two different values. As long as p = &a, for *p = 20 to be true it must override a = 10. If you don't understand this you can accidentally overwrite your variables when using pointers.
@Unknown-cc6wc
@Unknown-cc6wc 2 жыл бұрын
Best teacher of computer ever. Keep it up👍
@shinyrao2786
@shinyrao2786 2 жыл бұрын
As we taken c=*q which means *q gives the value of b. Because q=&b; *q = value of b. Therefore the c=b; C= 9.
@741ibrahim2
@741ibrahim2 2 жыл бұрын
shiny rao u rocked !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@mukeshjaiswal8079
@mukeshjaiswal8079 2 жыл бұрын
Right
@AkashDixitShorts
@AkashDixitShorts 2 жыл бұрын
Yes
@bibeksingh2105
@bibeksingh2105 2 жыл бұрын
Yes
@saifshamsi4065
@saifshamsi4065 2 жыл бұрын
You are wrong
@udaysinghrana5725
@udaysinghrana5725 2 жыл бұрын
c=&q which means c=*(&b) value at memory location of variable b. *p = 20 this means *(&a) value 20 will be stored at variable a and will pointer will point to address of memory a
@bisusiddharth6942
@bisusiddharth6942 Жыл бұрын
Absolutely, if we use *p or *(&a).
@lokeswaripanchireddi-z6l
@lokeswaripanchireddi-z6l 9 ай бұрын
Mam I like your way of explaining the subject to students 👌, you are the best programming languages teacher for me......
@suryakant7977
@suryakant7977 2 жыл бұрын
Best teacher of computer ever.
@AyushSharma-li1kn
@AyushSharma-li1kn 3 жыл бұрын
Best teacher I have ever seen in my life😃😃🙏
@_kucial_
@_kucial_ 2 жыл бұрын
Kaha se ho??
@john_avernia
@john_avernia 2 жыл бұрын
I'm in the middle of doing my CS course, and this helps me a lot on understanding pointers (which apparently is a very hard subject that even the veterans hates). She's a great teacher.
@beneelohimhub
@beneelohimhub Жыл бұрын
The printf("C = %d, c) will give us 9, the printf("a = %d", a) will give us 20 and the printf("%x", p) will give us 0x8000.
@heysuraj-ik1rd
@heysuraj-ik1rd Жыл бұрын
correct
@beneelohimhub
@beneelohimhub Жыл бұрын
@@heysuraj-ik1rd Thank you...
@nandinil8723
@nandinil8723 Жыл бұрын
How pls explain a and p values
@beneelohimhub
@beneelohimhub Жыл бұрын
​@@nandinil8723 p is storing the address of a, that is it has a direct access to whatsoever value that is stored in a, so when you dereference p, what you get is the direct value of a, so dereferencing p and giving it a value of 20 is the same as updating the value stored at the address of a, which initially was 10 to the new value, which is now 20. I believe you understand it now?
@beneelohimhub
@beneelohimhub Жыл бұрын
@@nandinil8723 While p is the hexa-decimal value of p, that's the hexa-decimal value of 20.
@Vikram-b
@Vikram-b 10 ай бұрын
Thanks mam me 5 din se smjh nhi pa rha tha pointer apka video dekha smjh agya
@helloworld2054
@helloworld2054 2 жыл бұрын
For second question it's not clear whether ma'am had declared the value of a as 10 or 20. If you declare value of a as 10 then the output will be 10, if you declare it as 20, output will be 20. (run the code on your PC to verify)So value of a cannot be updated using *p. Whatever the value of a is declared first that will be printed. And for the third one it will print address of a in hexadecimal form
@chidiebereemereuwa9306
@chidiebereemereuwa9306 Жыл бұрын
according to the above block of code: int a =10, b = 9; int c; int *p,*q; p=&a; q=&b; // the pointer 'q' declaration here means that the address-of 'b' is assigned as // the value of q c = *q; // here is the declaration of c to *q or &b. This means that using the indirection // operator or dereferencing * operator: the value of the variable is accessed. // in this case the variable is 'b' *p = 20; // this will manipulate the value of the variable which p points to: 'a' // 'a' variable was initially 10 now value will be '20' printf("c = %d",c) // the output will be exactly the value at variable 'b' printf("a = %d",a) // the output will be the current assigned value to *p which is 20 🏑🏑i hope this was helpful to someone to understand better the output of c.
@swapnapanuganty3489
@swapnapanuganty3489 Жыл бұрын
Nice explanation, Just wanted to add in the line c = *q; it basically means that c = 9; because dereferenced q is pointing to the value of b which is 9.
@chidiebereemereuwa9306
@chidiebereemereuwa9306 9 ай бұрын
Yea: exactly.. thank you. c = 9
@PaulineR-xs3kx
@PaulineR-xs3kx 8 ай бұрын
understood . thanks
@Aditya-sn4le
@Aditya-sn4le Жыл бұрын
Ma'am you are literally the best teacher ever!!!!
@Aditya-sn4le
@Aditya-sn4le Жыл бұрын
No one can beat u in being the best teacher ever for C programming.
@jxtin1007
@jxtin1007 Жыл бұрын
very beautiful teacher.
@GEORGESTEPHENTHARAKANB23CS212
@GEORGESTEPHENTHARAKANB23CS212 10 ай бұрын
truely. that itself keeps us hooked 😅
@theshashankgaming1231
@theshashankgaming1231 Жыл бұрын
mam thanks lot your teaching style is very awesome slowly slowly helps me to understand all the topics thanks a lot mam you are best
@kocengineering769
@kocengineering769 3 жыл бұрын
Mam c=9 only As you told us to comment on C=*q So it must be 9 In the program while you were running you have given C=*p Which will give a value 10 I got it mam Thanks
@Pavansgame
@Pavansgame 2 жыл бұрын
C=*q That means it should print value of 'C' but where Is C value
@nasirkhatib3836
@nasirkhatib3836 Жыл бұрын
Best teacher of computer in india
@PavaniTirumani-p7i
@PavaniTirumani-p7i 2 күн бұрын
C=*q ,*q represents the address of b in which b value is present and print the value c= 9
@ChillOutinLove
@ChillOutinLove 3 жыл бұрын
a) c = *q , then value of c is 9 b) *p = 20 means value at (&a) is 20. c) value of p is address of 'a' in hexadecimal form.
@tomcruise4293
@tomcruise4293 2 жыл бұрын
Thanks bro for this easy way
@alaharianuhya9523
@alaharianuhya9523 2 жыл бұрын
Can you pls tell me how the value of a is 20
@ummesalma6669
@ummesalma6669 Жыл бұрын
@@alaharianuhya9523 we used there indirectional operator that is * which prints the value of 'a' at address of 'a' (As we already declared above that 'p' stores the address of the variable 'a')
@iAmAjayTeli
@iAmAjayTeli 2 жыл бұрын
Mam you are amazing I always watch only your video when i don't understand in my college You are better than my college teacher
@moizawan1807
@moizawan1807 9 ай бұрын
1-- c=*q; this will assign value of memory address that is stored in q so c will become 9 2-- a=10; *p=&a; *p=20; this time value 20 is assigned to a variable and its orignal value is overwritten by this
@ronycb7168
@ronycb7168 2 ай бұрын
c will be 9 and a will be 20 and p will store the base address 3046
@ayyoubezzouine
@ayyoubezzouine Жыл бұрын
best teacher ever !thank you so much
@suvashreepriyadarshinibisw8017
@suvashreepriyadarshinibisw8017 Жыл бұрын
C = 9 A= 20 P = hexadecimal number
@limitess9539
@limitess9539 Жыл бұрын
if you suddenly open 15:38 it looks like b=a lol, in that case value of C would be 10 which I thought, because it looked like that to me lmao
@maradanavivek
@maradanavivek Жыл бұрын
9
@Games_with_Aryan365
@Games_with_Aryan365 2 жыл бұрын
Answer C=9 a=20 P=it store the address of other variable in hexa decimal form...
@hariparuchuru3858
@hariparuchuru3858 2 жыл бұрын
what I understood I if we initialize int a=10; int *p; p=&a; *p=44; printf("%d", a); then it will print a=44; i think here we are changing the value stored in a through pointers i.e if p is having address of a the *p says value stored at the address means if we initialze *p =44; means we are initializing value to a.
@archismanghosh7283
@archismanghosh7283 2 жыл бұрын
my favourite teacher and first choose of CS
@melthabah1158
@melthabah1158 3 жыл бұрын
The value of a now is override by 20 output is 20 for a value mam
@Sunil-zo3bh
@Sunil-zo3bh 4 ай бұрын
As *q=*(&b) And b is having value 9. So asterisk operator will fetch value inside address of b. Ie. 9
@kwameanati
@kwameanati Жыл бұрын
Value of c is 9 Value of a is 10 Value of p is &a in hexadecimal
@vaibhavsinhbihola1
@vaibhavsinhbihola1 3 жыл бұрын
15:29 answer is 9 16:18 for value of a answer is 20 and for value of p answer is 1000
@praveensamuel8083
@praveensamuel8083 3 жыл бұрын
exactly hexadecimal value of p is 1000 only.... y bcoz here p have address of variable 'a'... condition: P=&a
@manojrajput9930
@manojrajput9930 2 жыл бұрын
a = 10 P = 1000EF( in hexadecimal form) C = 9
@kushpreetbakshi4828
@kushpreetbakshi4828 2 жыл бұрын
A will be 20 bro change kar di hai val. A ki pointer se
@soulfulhuman8724
@soulfulhuman8724 2 жыл бұрын
@@kushpreetbakshi4828 hello. Value is coming out to be 10 when I run it in VS code. And after this I also print Printf("%d", *p) ; So value is coming 20 there. How come?
@totoplopp6630
@totoplopp6630 Жыл бұрын
She got me through my bachelor in computer science more than any teacher at Uni
@vickyvignesh3844
@vickyvignesh3844 3 жыл бұрын
mam waited for pointers for a long time thanks for start uploading mam!!.please post all videos as soon as possible mam.please try to upload 2 videos per day mam.Thank you mam.
@harshpandey3500
@harshpandey3500 3 жыл бұрын
It's very useful mam thanks for this information
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/pYjXmq2lrL-MeMU
@codeMantra272
@codeMantra272 2 жыл бұрын
Thanks ma'am your video clear my all doubt ☺️
@tanish_ot7
@tanish_ot7 2 жыл бұрын
Mam aap bhout acha padhate hoo
@timjoyalle318
@timjoyalle318 3 жыл бұрын
New to the channel. I like your style of teaching. Keep up the good work!
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/pYjXmq2lrL-MeMU
@laxmanpabbathi9268
@laxmanpabbathi9268 3 жыл бұрын
Nice teaching
@sairamkumaremani2485
@sairamkumaremani2485 3 жыл бұрын
Thank you very much mam now concept is very much clear.
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/pYjXmq2lrL-MeMU
@shinyrao2786
@shinyrao2786 2 жыл бұрын
*p=20; which means value of a will be overwritten by 20.a=20;
@eshuvgautam3186
@eshuvgautam3186 3 жыл бұрын
Mam whenever you teach us everything is FINE!
@maryannemuthoni5388
@maryannemuthoni5388 9 ай бұрын
Value of c is 9 Value of a is 20 Value of p is the address of a which in our case it's 1000 but will actually be in hexadecimal form
@heroicme6982
@heroicme6982 Жыл бұрын
Best teacher in the world❤🩷💛
@nextzen9550
@nextzen9550 2 жыл бұрын
very very thank you so much ma'am
@Mehedihasan-rahat
@Mehedihasan-rahat 18 күн бұрын
Thanks 4 your outstanding explanation but a single query was what is the purpose of using pointer???😮😮
@jayalakshmilbhat125
@jayalakshmilbhat125 8 ай бұрын
Best lecture ever seen.. Happy Birthday mam ❤
@nextzen9550
@nextzen9550 2 жыл бұрын
i like your video...thx ma'am
@bathureddy4456
@bathureddy4456 3 жыл бұрын
hyderabad secunderabad jenny madam zindabad...
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/pYjXmq2lrL-MeMU
@yashichauhan316
@yashichauhan316 2 жыл бұрын
in case of printf("c= %d", c); the address of pointer q is printed in integer format. next incase of printf("a= %d ",a); value of a willl be printed that is 10.
@yashichauhan316
@yashichauhan316 Жыл бұрын
@sampath sam hey
@priyanshusaraswat8892
@priyanshusaraswat8892 9 ай бұрын
Thank you for lecture
@faithfullyfactual
@faithfullyfactual Жыл бұрын
value of c = 9 because c is initialised to hold the value of the pointer q(which houses the address of b), which turns out to be 9. Hence, value of c printed would be 9. In case 2, the value of the address p holds (*p) is modified in memory to 20. The address p holds is of variable and since *p is modified, it means a has been modified (or corrupted). Hence the value of a printed would be 20. In the last case, p would print the address of the variable a, didn't change throughout the program.
@MadhuKarampudi
@MadhuKarampudi Жыл бұрын
value of c == value of b and a becomes variable so it leaves 10 value and it will get new value that is 20 a=20 and p=20
@shinyrao2786
@shinyrao2786 2 жыл бұрын
Printf ("%x",p) gives adress of p in hexa decimal form
@abdulrahimjalloh363
@abdulrahimjalloh363 Жыл бұрын
Assignment: printf("c=%d",c)...............it will print 9 printf("a=%d",a)..............it will print 10 printf("%x",p)..................it will print 10
@iasaspirant1441
@iasaspirant1441 2 жыл бұрын
superb explanation madam
@hustlewithnik
@hustlewithnik 3 жыл бұрын
a= 20 p= address of a in hexadecimal form c=9
@Romantic._Songs
@Romantic._Songs 2 жыл бұрын
Hi nikita❣️❤️
@FunandLearn2512
@FunandLearn2512 3 жыл бұрын
I am already a software developer. I don't know what I am doing here . I just came to see you everyday .
@timjoyalle318
@timjoyalle318 3 жыл бұрын
I know what you are doing here...
@FunandLearn2512
@FunandLearn2512 3 жыл бұрын
@@timjoyalle318 please enlighten me 😀
@timjoyalle318
@timjoyalle318 3 жыл бұрын
@@FunandLearn2512 You're here for her beautiful mind!
@FunandLearn2512
@FunandLearn2512 3 жыл бұрын
@@timjoyalle318 yes correct .
@dompelkmoviereview
@dompelkmoviereview Жыл бұрын
C = 9 a = 20 p = address of a ( hexadecimal number )
@ramu6313
@ramu6313 2 жыл бұрын
q contains the address of b(q=&b) *q contains the value of b=9 So c=9(c=*q(
@BiswajitMaharana1
@BiswajitMaharana1 3 жыл бұрын
Thank you mam for uploading this.
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/pYjXmq2lrL-MeMU
@thedata-ist
@thedata-ist 2 жыл бұрын
Since, q is carrying the address of b, so *(&b) = b. So, the output will be 9.
@taniyahettiarachchi6674
@taniyahettiarachchi6674 3 жыл бұрын
Thank u very much mam.💪💪👍👍🙏🙏❤❤
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/pYjXmq2lrL-MeMU
@williemungai1954
@williemungai1954 2 жыл бұрын
c outputs 9 the value of a is 20 p prints the memory address of a in hexadecimal
@sairampolisetty2059
@sairampolisetty2059 3 жыл бұрын
Thank you soo much mam ❤️😀 I have understood clearly.
@atharvabadgujar9868
@atharvabadgujar9868 Жыл бұрын
value of a will get printed the adress of p will get printed in another case
@sauravjaiswal5970
@sauravjaiswal5970 2 жыл бұрын
c=*q; since q stores address of b so the value at that address will be stored in c i.e 9
@jayprakashmahakud9150
@jayprakashmahakud9150 Жыл бұрын
9 20 Address of a which is hexadecimal
@harshini.m3327
@harshini.m3327 8 ай бұрын
Haappyyy Birthday Mam!🎉 Grateful for ur videos❤
@GaganGarg-pt6bg
@GaganGarg-pt6bg 5 ай бұрын
Now i can understand pointers
@asmarubiya5214
@asmarubiya5214 2 жыл бұрын
Better than our academic lectures..
@mohithar1110
@mohithar1110 2 жыл бұрын
hey army ..!
@asmarubiya5214
@asmarubiya5214 2 жыл бұрын
@@mohithar1110 hiiiii💜💜
@mohithar1110
@mohithar1110 2 жыл бұрын
Wow I can see army's every where 💜🥰
@vrengineers2462
@vrengineers2462 Жыл бұрын
ankit and pulkit will remember forever
@onlynoone6512
@onlynoone6512 2 жыл бұрын
15:28 *q=&b; here *q=9; then c=*q; so c will equal to 9
@mukbanggie3375
@mukbanggie3375 3 жыл бұрын
Example of beauty with brain 🥰🥰
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/pYjXmq2lrL-MeMU
@misturaojulari9707
@misturaojulari9707 Жыл бұрын
Thanks a lot! Your class is helping me achieve the impossible
@prassyam
@prassyam 3 жыл бұрын
Namaste ji, can u pl provide tutorial on Oracle 10g...in Hindi
@chandananonymus3563
@chandananonymus3563 2 жыл бұрын
thnks mam it was exam.time you cleared me before going to exam......and the exam was practical exam.🥲
@techienomadiso8970
@techienomadiso8970 2 жыл бұрын
Why can't Lecturers teach with passion like this? 🤦
@sauravjaiswal5970
@sauravjaiswal5970 2 жыл бұрын
*p=20; *(&a) = 20; //overwrites the value of a so a=20
@Palash-vm4mo
@Palash-vm4mo 2 жыл бұрын
Today is mam interview and these video is so beneficial for me💜
@JackCoderr
@JackCoderr Жыл бұрын
Thank you so much mam 🏵️🏵️🏵️... really greatful to you mam
@phanimanojoleti6606
@phanimanojoleti6606 2 жыл бұрын
your classes are awesome 😎😎😎 mam
@muhammedjasil1701
@muhammedjasil1701 Жыл бұрын
One of the great gift for Indian students..
@devSackey
@devSackey Жыл бұрын
The value of c is 9; a = 9; p = The address of a(in hexadecimal);
@YashwanthCheerla
@YashwanthCheerla 8 ай бұрын
Happy Birthday 🎉
@shraddhapawar5674
@shraddhapawar5674 3 жыл бұрын
Ma'am if possible, upload video fast. Nice lecture 👍
@leharaoshan7764
@leharaoshan7764 Жыл бұрын
thank you soo much jenny madam❤
@itsmearun7388
@itsmearun7388 Жыл бұрын
And also u should declare. All the value in printf in single line.. Like... Printf ("%x%d%d%x", a, pa, &pa, *pa) ; I'm just telling... That's also okay.. Know...
@alyanaly9069
@alyanaly9069 2 жыл бұрын
Answer C=9 a=20 P= address of a in hexadecimal form
@ASRCreations
@ASRCreations Жыл бұрын
Completed the course in 1 day for exam
@viratkohli5368
@viratkohli5368 3 жыл бұрын
madam plz make a video on dangling pointer and null pointer
@ahmadcomputers2291
@ahmadcomputers2291 3 жыл бұрын
Madam |G Thank You ""Good Job
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/pYjXmq2lrL-MeMU
@soumadeepdas7610
@soumadeepdas7610 2 жыл бұрын
best mam ever.❤❤
@invincible9971
@invincible9971 2 жыл бұрын
printf("c=%d",c); output is: 9
@megh5013
@megh5013 2 жыл бұрын
Thanks a lot Mam for this lecture!!!
@benjimen05
@benjimen05 Жыл бұрын
Megh I love tou
@preethipalanisamy8946
@preethipalanisamy8946 Жыл бұрын
c=9, a=20,p=addressof(a)
C_73 Pointers in C- part 3 | Pointer Assignment
12:35
Jenny's Lectures CS IT
Рет қаралды 241 М.
C_74 Pointers in C- part 4 | Pointer to Pointer (Double Pointer)
25:06
Jenny's Lectures CS IT
Рет қаралды 261 М.
They Chose Kindness Over Abuse in Their Team #shorts
00:20
I migliori trucchetti di Fabiosa
Рет қаралды 12 МЛН
Triple kill😹
00:18
GG Animation
Рет қаралды 18 МЛН
Кто круче, как думаешь?
00:44
МЯТНАЯ ФАНТА
Рет қаралды 3,9 МЛН
Disrespect or Respect 💔❤️
00:27
Thiago Productions
Рет қаралды 37 МЛН
Future of Software Engineers | Top Skills to learn before 2027
5:57
Jenny's Lectures CS IT
Рет қаралды 114 М.
C_76 Pointers in C- part 6 | Pointer Arithmetic (Subtraction) with program
17:48
Jenny's Lectures CS IT
Рет қаралды 164 М.
The Most Important Problem In Physics (The Fermi Paradox)
14:57
BUILDING A NOTE TAKING APP PART - 6
ezLive
Рет қаралды 179
C_71 Pointers in C - part 1| Introduction to pointers in C | C Programming Tutorials
17:02
The Quest To Make Unbreakable Glass
22:23
Veritasium
Рет қаралды 2,2 МЛН
They Chose Kindness Over Abuse in Their Team #shorts
00:20
I migliori trucchetti di Fabiosa
Рет қаралды 12 МЛН