|
| Total Answers and Comments: 6 |
Last Update: April 20, 2007 |
|
| | |
|
Submitted by: priti #include<stdio.h>
int add(int a,int b) { int c=3; int d=a+b;
int addToC(int c, int d ) { printf("This is addToC.....n"); return(c+d); } return(addToC(c,d));
}
int main() { printf(" Addition %d n" ,add(1,2)); return 0;
}
Above answer was rated as good by the following members: gunturi.prabhakar | Go To Top
|