How To Return An Array From A Function | C Programming Tutorial

Sdílet
Vložit
  • čas přidán 23. 08. 2022
  • How to return an array from a function in C. We technically cannot return an array from a function in C, but we can use pointers, and different approaches including dynamic memory allocation and static variables, to achieve something effectively similar. Source code: github.com/portfoliocourses/c.... Check out www.portfoliocourses.com to build a portfolio that will impress employers!

Komentáře • 155

  • @rabbitcreative
    @rabbitcreative Před 5 měsíci +25

    Neat. I think of it as two opposing thought-processes:
    1. This function returns an array.
    2. This function is given an array to write to.

    • @andredcavalcante
      @andredcavalcante Před měsícem

      The problem is think that the value of return statement IS the function return. It's not. The return statement was create in the sense to provide a single value that the function return to callee to enable some decision there. Data pass to and retrieve from a function must be made through function arguments, by value or by reference (pointer to). Understand this Will make your life easier in C.

  • @hansformer9556
    @hansformer9556 Před 5 měsíci +11

    I think more important for the _static_ approach is, that every function call will reference the *same* array.
    So when you call set_array(4) and later on set_array(5), the first array will be changed too.
    That produces very hard to find bugs because of the sideeffects.
    A topic that would be great for another video.

    • @PortfolioCourses
      @PortfolioCourses  Před 5 měsíci +4

      A video on side effects in general is something I've been thinking of.

  • @buddy.abc123
    @buddy.abc123 Před rokem +31

    I'm learning C again after some years, so glad this channel exists because the teachings are super clear to me

    • @PortfolioCourses
      @PortfolioCourses  Před rokem

      I’m glad you’re finding the videos clear Siya! :-)

    • @buddy.abc123
      @buddy.abc123 Před rokem

      @@PortfolioCourses wow thanks for the reply! I love your style and pace. I wish I knew about your much earlier in my career, I would definitely be a C programmer. But C# and JavaScript pay the bills for now 😅
      Thank you for the great content, I've been binge watching for the past couple of weeks

  • @neelakantannilakantanswami4031
    @neelakantannilakantanswami4031 Před 5 měsíci +12

    I have 10 years of Experience in C Programming. I have never Seen such Clear Explanations in the entire you tube. Thanks to Portfolio Courses. You are really Awesome.

  • @t0rg3
    @t0rg3 Před 5 měsíci +12

    I’m a bit disappointed that you didn’t put more emphasis on properly pairing up malloc and free calls. In my experience it helps putting both in the same scope. So in your example one would move the malloc call out of the function and into main.

    • @acherongoon
      @acherongoon Před 4 měsíci +2

      A poibt that needs stressing for the static method is that you have a singleton array, there is only one array and more cannot be made.

  • @ellipszia
    @ellipszia Před rokem +7

    Thank you!! Theese videos are filling big gaps in youtube!

  • @poenanster5285
    @poenanster5285 Před rokem +1

    bruh, I've been looking for this for an absurd amount of time, this is much easier than messing with static ints' and those sorts of things..

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +2

      I'm glad you found the video and that it helped you out! :-)

  • @AK-vx4dy
    @AK-vx4dy Před 5 měsíci +3

    I'm not regular C programmer but i'm old enough to touch it and i say, *very* clear explanations of some C quirks, wich can let some one really undrestand what is going on.
    Thank you and keep going!

  • @lucasgroves137
    @lucasgroves137 Před rokem +2

    🎯 Finally some clarity on static vs dynamic allocation. 👍👍

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +1

      I’m glad the video was helpful in clearing things up Lucas! :-)

  • @davidharper1152
    @davidharper1152 Před 4 měsíci

    Great explanation, particularly the inclusion of static local variables which are encapsulated but not dynamic... Nice Work

  • @fifaham
    @fifaham Před 11 měsíci +2

    Educational videos like those, of Kevin, are very hard to find anywhere, not even in the universities. Kevin deserves a lot of appreciation.

    • @PortfolioCourses
      @PortfolioCourses  Před 11 měsíci +1

      I'm glad you enjoy the content Firas, thank you for being such a great supporter! :-)

  • @ejimenez1588
    @ejimenez1588 Před rokem +31

    I needed this video 😭 strings and arrays in C are killing me

    • @kalpeshlakum852
      @kalpeshlakum852 Před 5 měsíci +5

      Just clear your pointer knowledge and pointer arithmetics it will be easy to understand.

    • @jacksonlevine9236
      @jacksonlevine9236 Před 4 měsíci

      Pointer to the beginning of a block of memory on the heap or the stack! (Stack is cleared at end of function, so use heap if you need it to last longer)

    • @markcbaker
      @markcbaker Před 4 měsíci +2

      Always remember you need one extra byte for strings. Having the null terminator falling off the end of the char array, is a cause of many bugs.

  • @obsoquasi
    @obsoquasi Před 4 měsíci

    Very concise. Explaining a complex topic with in such a short time I hard! Well done!

  • @borkbork4286
    @borkbork4286 Před 4 měsíci

    THANKU SO MUCH, ur videos r soo clear! :)

  • @LetTheColorSpeak
    @LetTheColorSpeak Před 4 měsíci

    This video help me so much! Thank you❤

  • @yxyk-fr
    @yxyk-fr Před 5 měsíci +4

    8:00 congratulations! you reinvented memset() ;-)

  • @RaviKumar-gh9oh
    @RaviKumar-gh9oh Před 6 měsíci +2

    you are the best Sirrrr , nobody like you taught me these concept , plz carry on your way of teaching is unbelievable . i have huge respect for u sir.please don't leave us in this journey.
    Thanku sir🙂

  • @TheKhalamar
    @TheKhalamar Před 4 měsíci

    The huge disadvantage of the static approach is that the same array is shared between the calls. That means that if you call the function twice with different values, the values of the first array will be changed to the new value during the second call (because both have the same address)

  • @hanzval
    @hanzval Před 9 měsíci

    VERY HELPFUL thank you

  • @oracle_stm2711
    @oracle_stm2711 Před rokem +3

    Man you just saved me because there are no videos about it on CZcams. Man, thank you very much (I'm in physics, in the third year) ;)

  • @juanmacias5922
    @juanmacias5922 Před rokem +2

    Thanks for the video! This can be a struggle lol

  • @johndubchak
    @johndubchak Před měsícem

    I love these videos. Great content, and beautiful explanations. The only nit I have is where the pointer indicator is...I always read it as the dereference operator when it is next to the name of the thing it refers to. (Sorry, don't flame me)

  • @crispytek6783
    @crispytek6783 Před rokem

    Thank you ever so much, really appreciate it!

  • @emblink27
    @emblink27 Před 5 měsíci

    I clicked the video because the first thought was “wait a minute, is it possible in C?”
    And as I thought it’s not 😊
    The explanation was great, I think it worth to mention that array can be encapsulated in a struct or union, and those can be returned directly.

    • @PortfolioCourses
      @PortfolioCourses  Před 5 měsíci

      That's a good point re: encapsulating an array in a struct or union, do you know if there is a "known" use case for that? Maybe I could cover it in a video as a "coding trick" sort of thing, but I don't know if there is an actual situation where that's advised, maybe if it's a small array or known size that's attached to other relevant data in the struct?

    • @emblink27
      @emblink27 Před 5 měsíci

      ​@@PortfolioCourses It's no frequently used, but if you want to return more then one argument from the function (maybe including small array) without passing a bunch of pointers to the input the struct is an ideal solution. And for the array encapsulation, I usually use this trick in embedded systems. For example, I have an SPI bus witch sends some defined packets with a known maximum size. Those packets are described as a union witch contains different structs (packet types), and a uint8_t rawdata[PACKET_MAX_SIZE] array. When I receive bytes from SPI, I store them in the union array and when the transfer is finished I return a union packet which is easily processed by the packet parser. So I'm still returning a union but it was filled like an array. Hope this brief explanation makes sence)

    • @emblink27
      @emblink27 Před 5 měsíci

      @@PortfolioCourses I think the best use case for struct is when you need to return a multiple variables from a function, maybe including a relatively small fixed size array, without passing a bunch of pointers to the function input.

    • @emblink27
      @emblink27 Před 5 měsíci

      @@PortfolioCourses As for the unions, I like to use them with arrays in embedded systems because it’s really useful in some cases. For example I have 2 microcontrollers talking to each other by SPI bus. The packets maximum size is known, they are represented as a union which contains a bunch of structs (each struct represent different packet type) and one array of uint8_t data[PACKET_MAX_SIZE]. SPI HAL stores received bytes in union data array. When the SPI transfer is finished, the SPI HAL returns a union which is already filled with bytes and can be processed very quickly be the packet processor.
      Hope this explanation makes some sense 🙂

  • @MrHasenfeffer
    @MrHasenfeffer Před 5 měsíci

    Note that there is only one copy of that static variable. So everytime set_array(...) Is called, every reference to the array will see the values change since they all point to the same memory location.

  • @davannaleah
    @davannaleah Před 5 měsíci

    another way would be to pass the address of the array as a parameter to the function (it would be another function, not main). The problem with this though is that you must make sure the array is large enough for the function, in this case it must be length of 5 ints.

  • @doublex85
    @doublex85 Před 5 měsíci +1

    It's true, C arrays are second class citizens. They decay into pointer-to-first-element if you look at them funny and you cannot pass them into and out of functions. Structures, though, do not have these limitations, so you if you want to have real array values you just have to give their types structure names. C99 even gives you a syntax for them in compound literals.
    typedef struct { int a[5]; } int5;
    int5 map_inc(int5 vals) {
    for (int i = 0; i < 5; i++)
    vals.a[i]++; // vals isn't a pointer, this does not mutate the caller's array.
    return vals; // return the whole array as one value.
    }
    int main(void) {
    int5 inced = map_inc((int5){ .a = {1,2,3,4,5} });
    return inced.a[4]; // exit code 6.
    }

  • @X_Baron
    @X_Baron Před 4 měsíci

    A side note: you don't actually need to manually free any memory when the program ends, because the operating system will do it for you. You should free any allocated, unneeded memory if you intend to keep the program running, or possibly just to keep things consistent and avoid memory leak warnings.

  • @heshamelnabtity2830
    @heshamelnabtity2830 Před rokem

    Good work, thanks

  • @charlesabju907
    @charlesabju907 Před 4 měsíci +1

    This video is a great example of why you should start learning to program by learning C.

    • @PortfolioCourses
      @PortfolioCourses  Před 4 měsíci +1

      It definitely forces you to learn in a certain way, other languages can feel easier afterwards... like learning to drive manual before learning to drive automatic. :-)

  • @zoquevil4792
    @zoquevil4792 Před rokem +2

    Great video as always!!!
    Could we say it also possible with a global variable like the example you give with the static one?

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +2

      Yes, I suppose we could do it that way, but I wouldn't recommend it, and we would want to be very, very careful about how we use that array since it is global and any function can access it. 🙂

  • @HoSza1
    @HoSza1 Před 4 měsíci +3

    somehow i expected that the return-the-array-wrapped-in-a-struct technique would also be mentioned, but whatever 😂

  • @harithabandara3212
    @harithabandara3212 Před 6 měsíci

    Thank you❤

  • @mohamedanoof102
    @mohamedanoof102 Před rokem

    Thank you so much

  • @yolamontalvan9502
    @yolamontalvan9502 Před 8 měsíci

    Could you make a video using a 2D array. I have problems passing a 2D-array to a function and returning modified.
    Your tutorials are so clear and easy to understand. Thank you.

  • @Dom-zy1qy
    @Dom-zy1qy Před 4 měsíci

    Part of me despises pointer arithmetic, part of me appreciates it

  • @user-tx3pv1xl6g
    @user-tx3pv1xl6g Před 4 měsíci +1

    11:16
    just wondering, doesn't the compiler think the size of result is sizeof(int) and only free the first element of the array, and leak the rest?
    or is C compiler smart enough to guess that result "integer" has 5 elements in it?

    • @psyience3213
      @psyience3213 Před 4 měsíci +3

      when you call malloc some extra information is stored with it like the block size. This block size is used to determine how much memory to free.

    • @cinderwolf32
      @cinderwolf32 Před 4 měsíci +2

      This is taken care of by the heap itself. If you want to get into the weeds with it, the requirements for malloc and the heap to be as efficient as possible while also keeping track of memory properly have created a surprisingly complex design.

  • @Klinifini
    @Klinifini Před 4 měsíci

    How does free know what size of the memory needs to be released?

  • @jbergamot
    @jbergamot Před 4 měsíci

    What is your IDE, environment? Thanks

  • @loldart
    @loldart Před rokem +1

    Was very helpful when understanding on to setup arrays!

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +1

      I’m glad to hear it was helpful Jack! :-)

    • @loldart
      @loldart Před rokem

      @@PortfolioCourses I do have a follow up question. Do you have a video on strings with spaces in C coding? I been stuck on that one for a few days.

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +1

      As in user input with spaces? If so, this video might help you out: czcams.com/video/f8589Y9LHHg/video.html. :-)

    • @loldart
      @loldart Před rokem

      @@PortfolioCourses Much appreciated! Will take a look after work!

    • @PortfolioCourses
      @PortfolioCourses  Před rokem

      @@loldart You're welcome Jack! 🙂

  • @lakshaygupta4786
    @lakshaygupta4786 Před rokem

    Thanks!!

  • @mongraal2272
    @mongraal2272 Před rokem +2

    sir,can u please do a video about how triple loops work...im so confused and i cant find anything on the internet

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +2

      Like a loop inside a loop inside a loop? OK, I've added that to my list of ideas. That said, generally speaking we try to avoid doing that because it usually means the code may be inefficient because all the repetition has a "multiplicative effect". Sometimes we can't avoid it though. This video on matrix multiplication uses a triple loop: czcams.com/video/G_WjTIBTMhY/video.html. :-)

  • @stephenholland6328
    @stephenholland6328 Před 4 měsíci

    Could you define the function “int array[5] myfunction(void)” ? I mean, no compiler could put an array of unknown size on the stack to return. However, a fixed size array is another matter. After all, c will let you return a struct.

  • @Videoman2102
    @Videoman2102 Před rokem

    In C compiler online in "onlinegdb" says error: conflicting types for ‘set_array’; have ‘int *(int)’

    • @PortfolioCourses
      @PortfolioCourses  Před rokem

      Hmm that's odd Mario... the original source code is posted here: github.com/portfoliocourses/c-example-code/blob/main/return_an_array.c. When I copy and paste that into onlinegdb, I do not get any errors.

  • @Tech-Relief
    @Tech-Relief Před 4 měsíci

    As an old retired software engineer I have always shunned C and C++ because they suck. However, with Arduino etc. I am stuck using it, but I disagree with your view of static variables, I would always recommend using some sort of global variable in preference of Malloc and free. In your example the malloc is in a function and the free is outside of it, that is bad. I would set a rule that any malloc should have a matching free in the same function or method to avoid a programmer forgetting to free and create a memory leak.

  • @wesleytaylor-rendal5648

    I use vscode, can i get an error warning extension that is as good as yours?

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +1

      Great question Wesley. 🙂 I'm not sure if it would be the same as Xcode in terms of the warnings provided, but I'd try these as a starting point: marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack. When I'm not using Xcode, I've always just used a terminal running gcc as a matter of preference, and I've found the warnings gcc gives me to be pretty good too.

  • @JavSusLar
    @JavSusLar Před 5 měsíci +1

    Are Static variables located at the STACK or at the HEAP?

    • @somedude-tr1mj
      @somedude-tr1mj Před 5 měsíci +2

      Neither. Static variables, whether declared within functions or at global scope of a particular source file, sit at a fixed address (determined at link and/or load time) within the process, that's neither in the stack nor the heap.

  • @Mnogojazyk
    @Mnogojazyk Před rokem

    What do you do when a function does not know the number of elements in an array? As far as I know, C doesn’t have a general array length() function call, e.g., the static variable .length in Java.
    Does the programmer have to keep track of the array’s element count in the calling function and pass to the called function the count? Example:
    int *set_array(int value, int count)
    {
    Int *array = malloc(sizeof(int) * count) ;
    for (i = 0 ; i < count ; i+)
    array[i] = value ;
    return array ;
    }

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +4

      Yes, that's basically the idea. When we pass an array to a function, what really gets passed is the memory address of the first element in the array, not the entire array. So we need the function to know "somehow" how big the array is... maybe we pass the length as an argument, maybe it's a preprocessor constant or hard-coded value, etc.

    • @Mnogojazyk
      @Mnogojazyk Před rokem +1

      @@PortfolioCourses, acknowledged. Thanks for the confirmation.

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +2

      You're welcome! :-)

  • @AlMiCo86
    @AlMiCo86 Před 5 měsíci

    I would prefer to name the function argument „array“ different from main, just to make exactly clear what is going on. Might be mixed up by beginners.

  • @xealit
    @xealit Před 4 měsíci +1

    What if you return a struct with a known size array inside?

    • @PortfolioCourses
      @PortfolioCourses  Před 4 měsíci +1

      That can work but it’s not a recommended method, I may cover that in another video as a “coding trick”. :-)

  • @aghiadalzein3069
    @aghiadalzein3069 Před 4 měsíci

    Great Explanation thanks.

  • @knowledgeofinvesting8872

    are you doing this on mac if so which ide is it?

  • @muhisaleh4598
    @muhisaleh4598 Před rokem +1

    thnx for this great video!!!
    i just have one question, if we have a Funktion that return a pointer to an (int)array, how can we find the size of that returned array in the main fun?
    int* containDigits(int number []){//////function the returned pointer to a new array
    return new;
    }
    int main{
    int numbers[] = {4213,132,43};
    int n =0;
    int *numbers1 =containDigits(numbers);//////////also here how can we find size of the array

    return 0;
    }

    • @PortfolioCourses
      @PortfolioCourses  Před rokem

      That's a great question Muhi. :-) And the answer is that we can't really find the size of the array in the main function. If it were an array on the stack, we could use sizeof, like in this video: czcams.com/video/ZCzXhRkiBu4/video.html. But that isn't going to help us here. What we could do though is use pass-by-reference, also called pass-by-pointer in C, to return the length of the array: czcams.com/video/RecxQUUEOn4/video.html. Pass-by-reference will essentially allow us to return multiple things from an array in C. :-)

    • @muhisaleh4598
      @muhisaleh4598 Před rokem +1

      @@PortfolioCourses thank you very much for your help!!

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +1

      You're welcome! :-)

  • @undersquire
    @undersquire Před 4 měsíci

    You can still return an array directly from a function in C by wrapping the array into a custom struct declaration, although it's a bit verbose.

    • @PortfolioCourses
      @PortfolioCourses  Před 4 měsíci +1

      It’s inefficient too due to the copying of the struct that happens, I’ve thought of doing a video on this. :-)

    • @undersquire
      @undersquire Před 4 měsíci

      @@PortfolioCourses I guess it depends on the context and how it's used, but with compiler optimizations it generates the same (in some cases even simpler) assembly for the struct definition version. But you are right if optimizations are turned off.

    • @PortfolioCourses
      @PortfolioCourses  Před 4 měsíci +1

      No, even with optimizations turned on, because of the way return values work, you wouldn’t want to do that with anything but a very small array in a struct. Again I might make a video to explain this.

    • @undersquire
      @undersquire Před 4 měsíci

      @@PortfolioCourses Right my bad, I didn't specify I was talking about small arrays like in the video, anything remotely big should definitely not be returned by value.

    • @undersquire
      @undersquire Před 4 měsíci

      Actually testing this in Godbolt to view the assembly, even with returning an array with 3000 integers the compiler optimizes the assembly to instantiate the array inline and doesn't make a copy, generating nearly identical assembly to a pointer-based implementation (with -O3). I still wouldn't rely on this in real code however, but an interesting experiment.

  • @jnarical
    @jnarical Před 5 měsíci

    What do I do if I need to return an array of a variable size? Defining its size in runtime. I mean, if I want it on a stack. Is there ways to do that?

    • @psyience3213
      @psyience3213 Před 4 měsíci

      arrays on the stack need to have their size known at compile time.

    • @jnarical
      @jnarical Před 4 měsíci

      @@psyience3213 I know. But there should be workarounds. Modern C++ has some tricks for that, I’m sure

    • @jnarical
      @jnarical Před 4 měsíci

      @@psyience3213 there’s a high frequency function. It uses C-style array for speed. Usually the size of it is somewhere between 80 and 161, but sometimes it’s 480.
      I can use other ways to optimise that, but that would hit code readability, and honestly there’s no necessity… so if there ways to make C-style arrays more dynamic I’m looking for it )
      For now, I’m using static array of size 480 for all cases, getting rid of reallocation but wasting almost 80% of its size most of the time

    • @psyience3213
      @psyience3213 Před 4 měsíci +1

      @@jnarical those are basically your only other options as far arrays. Otherwise you can use other data structures but arrays are the fastest. If you're not resizing and moving stuff you can do something like a linked list of arrays where each link contains an array of 80 elements and you add links as you need more.

    • @jnarical
      @jnarical Před 4 měsíci

      @@psyience3213 Smart.

  • @aknsagdic9388
    @aknsagdic9388 Před 18 dny

    Great

  • @doruk5766
    @doruk5766 Před 6 měsíci

    I did the way you did first time and my program worked perfectly even thought it gave an error on yours. Does anyone have any idea why would that be?

    • @johnshaw6702
      @johnshaw6702 Před 5 měsíci +1

      The data was still there, because it wasn't overwritten in memory yet. When the function returns it basically pops all local variables off the stack. That is the memory where they were stored is no longer reserved for them. That memory can be overwritten before you try to access it and is therefore considered undefined.
      If you took the address returned and immediately access it, then there is a good chance the data that was stored there hasn't change yet. But, if you do anything in your program before attempting to access it, then you probably overwrote that memory location and the original data stored there is gone.
      I hope that helps. It would be easier to explain with a diagram, but you should get the idea.

    • @doruk5766
      @doruk5766 Před 5 měsíci +1

      @@johnshaw6702 Thank you very much for taking the time to answer properly, I understand now.

  • @ritankarmondal8707
    @ritankarmondal8707 Před 9 dny

    what is the ide used in the video?

  • @DatBoi_TheGudBIAS
    @DatBoi_TheGudBIAS Před 4 měsíci

    If the array is 8 bytes of ints or 16 bytes of floats or doubles, technically it's possible, but C probably just denies it all

  • @SirKenchalot
    @SirKenchalot Před 5 měsíci

    You hardcoded the length of the array each time. What is the length isn't known at compile time?

    • @psyience3213
      @psyience3213 Před 4 měsíci

      you can dynamically allocate arrays with variable size. int* ptr = malloc(sizof(int) * sizeOfArray); That's the point of dynamic allocation

  • @piotrprs572
    @piotrprs572 Před 4 měsíci

    and this is why C is to 'complicated' to many of programmers. 🙂
    Is to close to asm and v. easy you can do something that crash whole program or even system. 😀

    • @PortfolioCourses
      @PortfolioCourses  Před 4 měsíci

      As much as C can frustrate me, I think it's great for students to learn, because it's so close "to the metal". :-)

  • @snygg1993
    @snygg1993 Před 4 měsíci

    You might have a memory leak despite using "free".
    Since "result" is a "int*" I would assume the call "free(result)" will free 1 int instead of 5?
    And wouldn't it be better to handle malloc and free in one scope, since spreading the handling of memory over multiple functions/scopes makes it hard to track and thus almost guaranties memory leaks.

    • @PortfolioCourses
      @PortfolioCourses  Před 4 měsíci

      No we won’t have a memory leak by calling free() this way. And no, we do not need to handle allocation and freeing in the same scope, it does not “guarantee” memory leaks. I know some teachers will teach students to do it that way, but real C programs just don’t work that way. Data structures like linked lists and binary search trees depend on not allocating in the same scope/functions.

    • @snygg1993
      @snygg1993 Před 4 měsíci

      @@PortfolioCoursesok, interesting.
      What I still dont understand is how does free() know the size to be freed? Does malloc() maintain a list of all created pointers to know their respective allocated size?

  • @orisphera
    @orisphera Před 5 měsíci

    How does the following work?
    #include
    #include
    int *set_array(int value)
    {
    static int array[5];
    for (int i = 0; i < 5; i++)
    array[i] = value;
    return array;
    }
    int main()
    {
    int *a1 = set_array(1);
    int *a2 = set_array(2);
    printf("%i", a1[1]); // outputs 1
    }
    It's hard for me to formulate my question. If you see what it may be, what's the answer?

  • @andsoehd277
    @andsoehd277 Před 4 měsíci

    what different between array and &array?

    • @PortfolioCourses
      @PortfolioCourses  Před 4 měsíci

      This video covers that: czcams.com/video/WL1P6xiA_KY/video.html. :-)

    • @andsoehd277
      @andsoehd277 Před 4 měsíci

      @@PortfolioCourses thank you! :D

  • @kcvinu
    @kcvinu Před 5 měsíci

    Why don't you use calloc instead of malloc ?

    • @PortfolioCourses
      @PortfolioCourses  Před 5 měsíci +1

      This video explains the differences between the two functions: czcams.com/video/SKBnxCq3HvM/video.html

    • @kcvinu
      @kcvinu Před 5 měsíci

      @@PortfolioCourses Thanks. Let me watch it.

  • @orisphera
    @orisphera Před 5 měsíci

    I'd try
    int[5] my_function() {...}

  • @about2mount
    @about2mount Před 4 měsíci

    We never do this in Programming we instead send an array to a void functuion as a reference then change it and we are done.
    If you going to teach how arrays can be passed to functions then don't. We have no need to ever return them because the function is assigned to the actual array being passed. So even though the array inside the function has a different name it still holds reference to the outside array.
    So how does it reference the outside array? The function itself accepts the outside array in the following example asa reference because of these" [ ]". So there is no need for a reference or a pointer ever.
    #include
    #include
    #include
    using namespace std;
    int count=0;
    void asn_new_val(int ar[], int val){
    ar[count] = val;
    count++; //auto increments the counter
    };
    void re_assign_array(int ar[], int cnt, int new_value) {
    ar[cnt] = new_value;
    };
    void print_array(int ar[]){
    cout

  • @peligros13
    @peligros13 Před 4 měsíci

    No, never do that with the static keyword in this scenario. If you call the function a second time, it will mess up your array instead of giving you another one.

  • @unixux
    @unixux Před 4 měsíci

    You should’ve actually returned a pointer to an array instead ( int p[]; return &p ) . Instead of casting array to pointer

  • @tamptus3479
    @tamptus3479 Před 4 měsíci +1

    If you want to return an array by value, you have to put it in a struct.

  • @adnanemezrag3809
    @adnanemezrag3809 Před rokem

    is so complicated though

    • @PortfolioCourses
      @PortfolioCourses  Před rokem

      You're right... I prefer Python and other languages where this sort of thing is easier. :-)

  • @brkvrlgl2997
    @brkvrlgl2997 Před rokem

    ı am a rookie and ı am so confused :(

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +1

      Returning arrays from a function is definitely more of an advanced topic in C. Especially if we use dynamic memory allocation. These videos might help you out in terms of understanding related concepts. :-)
      Introduction to Pointers: czcams.com/video/2GDiXG5RfNE/video.html
      Dynamic Memory Allocation: czcams.com/video/R0qIYWo8igs/video.html
      Passing An Array To A Function: czcams.com/video/oe2bZKjiWrg/video.html

    • @brkvrlgl2997
      @brkvrlgl2997 Před rokem +1

      @@PortfolioCourses wow thank you for your interest ı will look them

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +1

      @@brkvrlgl2997 You're welcome. 🙂

  • @tinky3110
    @tinky3110 Před 5 měsíci

    So basically you can't return a classic array.

  • @piotrprs572
    @piotrprs572 Před 4 měsíci

    btw.. this example sucks in every way. You shouldn't do such thing like malloc outside you main function. Is only one exeption, that you create special function to 'initate' program and another to 'close' all handlers.
    Example should show, that we do malloc inside main function, thet we pass pointer of this array to subfunction.

    • @PortfolioCourses
      @PortfolioCourses  Před 4 měsíci

      I know sometimes teachers tell their students to do those things to have them prevent memory leaks, but that's not actually how real C programs work. If we create something like a data structure (linked list, binary search trees) that's not going to work out trying to use malloc only in main(), we need to be able to call functions to create new nodes and other functions to remove them. Also, see this example of using malloc() outside of main in Linux: github.com/torvalds/linux/blob/7e90b5c295ec1e47c8ad865429f046970c549a66/tools/perf/jvmti/libjvmti.c#L195. There are many other examples of this: github.com/search?q=repo%3Atorvalds%2Flinux+%22+malloc%28%22&type=code.

  • @gloubiboulgazeblob
    @gloubiboulgazeblob Před 4 měsíci

    Well explained, but correct me if I'm wrong : this is ok for static arrays (size never changes), but it becomes more tricky with dynamic arrays, their size is unknown to a function that is called...Giving their size as well when calling a function would be the only solution ?
    See : czcams.com/video/6Ir4l0VuI7Y/video.html

  • @divinechijindu7465
    @divinechijindu7465 Před 4 měsíci

    Who else heard those kids in the background 😂😂

  • @QuikRay
    @QuikRay Před 4 měsíci

    Return by reference, not by value.much quicker