Bhai thank you so much! Within the first 3 minutes itself all my doubts were sorted! Pls keep up the good work 👍
@RealEverythingComputers Жыл бұрын
Thank you so much! Helped me in my com sci course
@oddmetre10 ай бұрын
Finally found the answer I needed, thank you
@Prince_D_Coder Жыл бұрын
Your content just helped me right now THankssss
@totsh2056 Жыл бұрын
Thank you for such a thorough explanation. If I use a loop, will it not keep overwriting the first element of the array?
@PedagogyV Жыл бұрын
you need to have a condition to break the loop.
@nomnomnoname Жыл бұрын
Thanks for making it simple🫶
@tarunb50843 жыл бұрын
thanks for making video on this topic
@mesbahuddin53283 жыл бұрын
Nice presentation bro 👍
@khomo12 Жыл бұрын
Very nice! 👍👍👍
@vittorio93882 жыл бұрын
1:29 (a int*) is arledy the adress of the first element of the array. You should not pass the (&a int**)
@stressbuster50852 жыл бұрын
Correct only a should be passed
@ttitrends3 жыл бұрын
Very Good explanation. Keep it up.
@PedagogyV3 жыл бұрын
Thank you... :)
@vrajalingam34872 жыл бұрын
Nice explanation bro, keep rocking 👌
@PRIYANSHUCHAUDHARY-c6l Жыл бұрын
Bro ek question tha In fread function value of A is over written..... If not how does the variable pointer moves to the next memory block.......what is reason/logic behind it🤔
@san-wh8dz2 жыл бұрын
What a good explanation ! Thx You !
@MrLemonMedia2 жыл бұрын
your a legend
@alexmitchell95612 жыл бұрын
Thank you for this great video, really helpful! 😃
@boscofan37353 жыл бұрын
hello. why should it be &a? isnt an array supposed to be an address already?
@PedagogyV3 жыл бұрын
Hi , you can write a also. a and &a points to same memory locations.
@bbblok22353 жыл бұрын
Thanks broo !!!
@hussnainali-n3e Жыл бұрын
o bhai urcu mn samjhao
@punamojha883 жыл бұрын
could you provide c code for floowing code int ReadBinary(int nChan, int nPt, double Data[][nPt], const char * pfname); // Here's the prototype for the function that you need to write. 1. It accepts a 2D VLA of double to put the data into and the filename from which to read the data. 2. The function needs to: a. Open the file. b. Read in the number of channels and number of points in the file. c. Make sure they match the sizes nChan & nPt passed to the function., d. Read in the data for the 2D array named Data. e. Close the file. 3. It returns a value of zero unless an error occurred