What is a function prototype in C

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • Patreon ➤ / jacobsorber
    Courses ➤ jacobsorber.th...
    Website ➤ www.jacobsorbe...
    ---
    What is a function prototype in C // Function prototypes often catch new C and C++ programmers by surprise. This video is an attempt to clear things up.
    ***
    Welcome! I post videos that help you learn to program and become a more confident software developer. I cover beginner-to-advanced systems topics ranging from network programming, threads, processes, operating systems, embedded systems and others. My goal is to help you get under-the-hood and better understand how computers work and how you can use them to become stronger students and more capable professional developers.
    About me: I'm a computer scientist, electrical engineer, researcher, and teacher. I specialize in embedded systems, mobile computing, sensor networks, and the Internet of Things. I teach systems and networking courses at Clemson University, where I also lead the PERSIST research lab.
    More about me and what I do:
    www.jacobsorbe...
    people.cs.clem...
    persist.cs.clem...
    To Support the Channel:
    + like, subscribe, spread the word
    + contribute via Patreon --- [ / jacobsorber ]
    Source code is also available to Patreon supporters. --- [jsorber-youtub...]

Комментарии • 53

  • @JustinCromer
    @JustinCromer Год назад +29

    Without them, foo couldn’t call bar and that would be a sad sad day

  • @samplesandtests
    @samplesandtests Год назад +8

    the way someone explained it to me that helps remember to put prototypes before using is; to treat it like declaring a variable. you can't use a variable before declaring it. i know there is differences, but i feel it is a good frame of reference to a new programmer or at least a new C / C++ programmer.

  • @Barakatic
    @Barakatic Год назад +9

    That was a clear explanation. Thanks, Dr.
    This is similar to hoisting in JavaScript .
    Hoisting is JavaScript's default behavior of moving all declarations to the top of the current scope (to the top of the current script or the current function)

  • @joshuangerng2119
    @joshuangerng2119 Год назад +10

    Header files are full of prototypes its really useful to put all the prototypes into a header and just include that header when working with multiple c/c++ files

  • @philpeko1796
    @philpeko1796 Год назад +4

    Hi, congrats for your videos. For this one, in order to be more educational/demonstrative, you could have : a) Showed the _printf_ prototype in header file; b) wrote foo() and bar() into two separate source code files; c) created your own header file containing foo() and bar() prototype. This would have been more _in real life_ C project demo. Thanks anyway, Peace!

  • @benjaminrich9396
    @benjaminrich9396 Год назад +1

    These quick little C basics videos are really useful. Thanks

  • @Bob-zg2zf
    @Bob-zg2zf Год назад +1

    Thank you, Dr. Sorber.

  • @Ak4n0
    @Ak4n0 Год назад +1

    Is because the compiler needs to know how much stack space it needs to grow when calling a function (in addition to any automatic variables it may have).

  • @marcelnowakowski945
    @marcelnowakowski945 Год назад

    You are a very good teacher - It's a great thing you decided to post your videos!

  • @zxuiji
    @zxuiji Год назад +1

    Got an idea for your next vid, c++ templates vs preprocessor templates, preprocessor being where you make a bunch of defines your template expects (in place of of the c++ templates) and use #include to use your template (in other words the template is an entire file on it's own) which in turn undefines those defines once it's done with them (unless it's expected that you will use the defines still after said template's inclusion)
    **Edit:** As an aside it's also possible to replicate the inheritance of members like c++ classes do by putting the members in their own file then including that file at the top of the struct you're defining, damn sight clearer as to what goes where too. With that technique on top of the preprocessor templates and the callback typedefs, there's no actual value to c++ besides syntactic sugar and overloading

  • @sledgex9
    @sledgex9 Год назад +4

    This is also called "forward declaration".

    • @ColinMill1
      @ColinMill1 Год назад +1

      Yes, and Pascal used the "Forward" reserved word to mark such forward declarations. It also had to my mind better terminology such as "Uses" to mark include files.

  • @mihailteodorescu4083
    @mihailteodorescu4083 Год назад

    I am a person that wrote some or more C code :) .
    This RUclips Channel, is making C very easy to learn, if you do not know .
    C actually is a easy or very easy programming language.

  • @jenselstner5527
    @jenselstner5527 Год назад

    Simple but important to know. Thanks.

  • @anon_y_mousse
    @anon_y_mousse Год назад +1

    You should make a video on _Generic. Show how to use it and maybe even do a simple array example. Something similar to C++'s std::vector.

  • @VasDaniel
    @VasDaniel Год назад

    Your C programming language points are very useful and great.
    As you know, writing fast and accurate numerical calculation programs is always the concern of numerical calculation programmers.
    I think figuring out how to implement math functions in the C compiler is a safe and standard way to develop your own mathematical library.
    Because the compiler was written by very professional people. But my problem is that I don't understand its written literature.
    For example, I could not find how a function like SQRT is implemented. If possible, please advise. Thankful

  • @avimalka5362
    @avimalka5362 Год назад +1

    Please make a video about _Generic and it's usage

  • @greg4367
    @greg4367 Год назад +2

    Hi, Jacob, greetings from San Francisco. I have found that explaining function prototypes to newbies is an excellent gateway to a discussion explaining HOW C passes parameters to the called function on the stack, and how the return parameter is returned ON the stack, along with an attendant et discussion of the concept of FRAMES. Are you going there to?

  • @anyname4306
    @anyname4306 Год назад +2

    I am new to C, so I have to ask:
    They seem to be completely unnecessary and not make any sense. Why not just declare the function as it is at the top of the source file? Then you have the functionality, the return type, the arguments and the compiler compiles.

    • @FlashGamer521
      @FlashGamer521 6 месяцев назад

      I think the point is that, when other people view your code they may not know how you decided to organize it.

  • @re.liable
    @re.liable 9 месяцев назад

    These prototypes, you can move them to a .h file (header) and include that?
    Which then allows you to move the implementations to another .c file (C? source? code?) and compile that separately? (then link the compilations as last step?)
    If yes then I think I'm beginning to understand this flow a bit more...

  • @jamesbush7717
    @jamesbush7717 Год назад

    It’s also called a forward declaration.

  • @leegibson9121
    @leegibson9121 Год назад

    GCC gave me this warning today: "warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x"

  • @CaptainWumbo
    @CaptainWumbo Год назад

    I think you glossed a little too much on why it's needed.
    If you wanted, it's easy enough to straight #include all your code. But I think? for libraries like you said it is not a choice at all, you must use the linker after compilation, the code is not baked into your executable in a kind of outdated desire to save space repeating the same libs again and again on your filesystem.

    • @JacobSorber
      @JacobSorber  Год назад

      Yeah, most 5 minute programming videos gloss over some important stuff. And, yes, libraries are a common use case. There are, of course, header-only libraries. So, it is a choice. But, you're right if I'm linking together a bunch of different code from different translation units, I'm going to need prototypes. I was just trying to provide a simple example for beginning programmers who may not really grok the whole linking/translation unit/library part of the picture. I guess maybe I need to make another video on the topic. 🤔 Thanks.

  • @xniyana9956
    @xniyana9956 Год назад

    I think needing function prototypes is so primitive. Modern multi-pass compilers can resolve these symbols from the actual functions regardless of where they are declared in relation to where they are used. I don't know why C/C++ never got rid of this archaic limitation.

  • @faceless4970
    @faceless4970 Год назад

    Guys how can i calculate 2^1001
    In c or cpp
    Any ideas for that issues

  • @rogo7330
    @rogo7330 Год назад

    Btw, C does allow typedef function types, but it does not allow to define (and declare) functions with those typedef-ed types. What you can do is define a function macro for full function type with substituted name as argument.
    #define MyWidget_define(name) int (name)(char *restrict buf, void *ctx, size_t ctxsz)
    typedef MyWidget_define(MyWidget_func);
    struct Widget {
    MyWidget_func *call;
    void *ctx;
    size_t ctxsz;
    };
    MyWidget_define(widget_foo)
    {
    buf[0] = 'b';
    buf[1] = 'a';
    buf[2] = 'r';
    buf[3] = '\0';
    memset(ctx, 1, ctxsz);
    return 0;
    }

    • @sverkeren
      @sverkeren Год назад +1

      Why would you do that macro trick? It just hides names and types of argument 'buf' and 'ctxsz'.

  • @wah704
    @wah704 Год назад

    Currently 1 week into a 4 week c boot camp 😓

  • @NavidRigiEbrahimi
    @NavidRigiEbrahimi Год назад

    great guy teaching useful stuff, but I wish you spoke slower. it's sometimes really hard to keep up.

  • @luke43credici73
    @luke43credici73 10 месяцев назад

    So i'm the only one that's still confused

  • @techwithdipufrom0ton621
    @techwithdipufrom0ton621 11 месяцев назад

    What can you build with C in 2023? Have you built any great projects with C so far? Why don't you share your C projects with us? I'd like to see your C projects, please don't say no

  • @AlessioSangalli
    @AlessioSangalli Год назад

    I really wish C had a spec that required two pass parsing to avoid this unnecessary sophistication

    • @_gatorland_
      @_gatorland_ Год назад

      E perché pensi non sia necessario? Chiedo per curiosità

    • @AlessioSangalli
      @AlessioSangalli Год назад

      @@_gatorland_ sposterebbe la responsabilità della gestione della "forward diclaration" dei simboli dal programmatore al compilatore, automatizzando il tutto. Ci sono dei precedenti, per esempio gli assbler moderni sono tipicamente a doppia passata in modo da poter fare dei "salti" ad etichette definite "sotto" la riga corrente

    • @_gatorland_
      @_gatorland_ Год назад

      @@AlessioSangalli quindi ti riferisci solo ad eventuali funzioni dichiarate nei source file anziché negli header?
      Io penso che servano molto a strutturare il codice, in modo da fornire una raccolta compatta di funzioni dichiarate nei .c ed aumentare la comprensione e la leggibilità

    • @AlessioSangalli
      @AlessioSangalli Год назад +1

      @@_gatorland_ non parlavo di header. Comunque altri linguaggi (che so Java) non usano header files, è una scelta

  • @ntoes3378
    @ntoes3378 Год назад

    detected

  • @alexanderdell2623
    @alexanderdell2623 Год назад

    The fact that you either have to write functions before you call them or write meaningless (because no compiler parses in one pass nowadays) function signatures just pisses me off terribly, as a person who came from c sharp.
    This makes zero sense, at least because functions can't be reassigned in c anyway

    • @alexanderdell2623
      @alexanderdell2623 Год назад

      This not only ugly thing in c
      Fact that you should either write “struct”/“enum” word every time or use typedef is fucking annoying
      Why not doing this by default just like C does with other datatypes?
      And no, this is not about getting less syntax sugar, but getting more control
      Thats just bad design or proof me wrong

    • @anar.bastanov
      @anar.bastanov Год назад +5

      @@alexanderdell2623 stay mad

    • @l5248
      @l5248 Год назад +2

      C is old. There is no module system; everything is file-based. It's up to you to let the compiler know the parameters and return types of any functions not defined in the source file you're compiling.
      If you don't like writing "enum" and "struct" all the time, then use C++. Enums in C aren't even type safe (they turn into ints) so you don't really need to declare an enum using its tag name.
      Both C and C++ have built up technical debt over decades of modernization while still maintaining backwards compatibility with older standards. If you want something like C but fully modern, consider Rust.

    • @alexanderdell2623
      @alexanderdell2623 Год назад

      @@anar.bastanov average c-lover argumentation

    • @anar.bastanov
      @anar.bastanov Год назад +3

      @@alexanderdell2623 To your surprise, my forte is C#, too; just that I code in seven different languages but never complain about any. You do not even have a valid reasoning in this "argumentation" :P

  • @rahim9568
    @rahim9568 Год назад

    It's not helpful. Thanks anyway