How are predefined functions able to execute code below them?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How are predefined functions able to execute code below them??

How are control and iteration functions able to work on code below them? How can a user do the same to a new defined function?

3rd Apr 2017, 10:10 AM
Kinshuk Vasisht
Kinshuk Vasisht - avatar
5 Answers
+ 4
Pls Help...
3rd Apr 2017, 12:21 PM
Kinshuk Vasisht
Kinshuk Vasisht - avatar
+ 3
@Surya Kumar I think that you didn't understand my question... Or perhaps I wasn't able to explain it here...
3rd Apr 2017, 12:30 PM
Kinshuk Vasisht
Kinshuk Vasisht - avatar
+ 1
save what ever u need in one file with .h extention and use it as ur addition header file access
3rd Apr 2017, 12:25 PM
surya kumar
surya kumar - avatar
+ 1
for example in any.h file iam types a=10; and iam using it in name.c file #include<stdio.h> #include<any.h> main() { printf("%d",a); return 0; } output 10
3rd Apr 2017, 12:28 PM
surya kumar
surya kumar - avatar
0
like this u use functions variables every thing
3rd Apr 2017, 12:29 PM
surya kumar
surya kumar - avatar