Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
FUNTION3
//gcc 5.4.0 #include <stdio.h> int sum(int a,int b); int sum(int a, int b){ // formal perameters or a and b are temparary variables return a+b; } void main() { int a=20,b=10,total=0; printf("\n Before int sum(a,b) function"); total=sum(a,b); // a and b are the actual parameters printf("\n sum is %d",total); printf("\n After int sum(a,b) function"); }
run
|
edit
|
history
|
help
0
lab 11 v0.7
Function practice
150113_ArrayOrdenado
problem4 review fundamentos
Project 3 Part 1 v2
20171117_PITAGORAS
Time Stamp
switch_nota
WAP in C to delete an element from an array
Even odd program