Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
FUNTION4
//gcc 5.4.0 #include <stdio.h> int sum(); int sum(){ // formal perameters or a and b are temparary variables int a=20,b=10,total=0; total=a+b; return total; } void main() { int total=0; printf("\n Before int sum() function"); total=sum(); // a and b are the actual parameters printf("\n sum is %d",total); printf("\n After int sum() function"); }
run
|
edit
|
history
|
help
1
PROTOTIPO PREGUNTA 1 DE GUÍA 4
ej 2 c3
18BCE2182 MIDTERM QUES-2
C_141203_CTYPE
Galgotia university
lab2
Lab 8 part 2 v.05
18BCE2182 LAB FAT-2(A)-(i)
Goodone for understanding array passing
ForU