+ 1
Can anyone help me with working of functions in c Im unable to understand
How functions will work please explain n help me with this topic typesof functions and all
2 Antworten
+ 1
https://www.javatpoint.com/functions-in-c
Go through this..you can clear all your doubts regarding functions... Or if you still have any doubts...feel free to ask.. 👍
+ 2
function is just a set of lines of code which gets executed whenever it is called.
For example your program requires to perform a search in a list multiple times and quite frequently so instead of typing lines of code wherever you want, you can create a function and call it again and again whenever you want