Static Functions in C

preview_player
Показать описание
C Programming & Data Structures: Static Functions in C
Topics discussed:
1) Basics of static function.
2) Example of static function.
3) Important points related to the static function.

Music:
Axol x Alex Skrindo - You [NCS Release]

#CProgrammingByNeso #CProgramming #StaticFunction
Рекомендации по теме
Комментарии
Автор

Comments for myself: Declared default functions are global. Using the static keyword will make them invisible to other files in the same directory. With the static keyword, we can make another function on other files with the same name as with the one that is declared static and no error will happen.

compangit
Автор

you people are the best and straightforward teachers!

patriciabraica
Автор

0:31 "very easily " :D I really like his pronunciation 😁😁

paulg.
Автор

Sir please do videos on arrays structures, pointers and arrays

chinniarts
Автор

It was a really nice video on Static what can be the actual advantages of using static function apart from using same function name in other file?

tradebihari
Автор

Good explanation thank you. My opinion is that the confusion and lack of understanding about static functions could have been easily removed by using the word "private" instead. What is the logic behind using the word "static"? Especially when we have static variables in functions where the name better conveys the purpose.

undercrackers
Автор

sir when will u upload the data structure part?? plz, upload as soon as possible.

rohandas
Автор

A quick question: How would apply main and default functions on linux not using CodeBlocks. I tried it in Linux by creating two files in the same folder and run the main on linux command line. I got the "Underfined reference to 'func'

teddy
Автор

I have a doubt
When I write static in front of the function can't the compiler interpret it as returning a value (static int)?

gautamvashishtha
Автор

Sir could you please upload a video about object oriented programming in c. thanks

shinichikudo
Автор

Sir, if we write the same function name in two files then which file will be referred to when main calls the function?

erukullaeshwar
Автор

what is the IDE that used to program in this tutorial ?

kannaiyand
Автор

SIMILAR WAS THE CASE WITH STATIC VARIABLES :)

purubhargava
Автор

Can you upload about linker and loader in c

mallikarjunaraonaidu
Автор

can anyone tell where are static functions stored in program memory

satvikkhare
Автор

why extern keyword is not used before function declaration, as the definition is in other file extern should be used

nageshpathak
Автор

sir pls upload [ java and c++ ] lecture

ALPHABET-
Автор

Missing : static functions can be in-lined by optimization

ArjanvanVught
Автор

Why the code is not working on vs code?

sayalipalande
Автор

Can anyone say this?

In a project in main.c file I mentioned a function named add
And in another two files in same project I used this function with different definitions each.
Which will be executed if I do like this, will it provide an error or it take first definition in file or its compiler wish?

universalstarcpu