You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
248 B
19 lines
248 B
15 years ago
|
//#include <p30f2010.h>
|
||
|
|
||
|
int main(void);
|
||
|
unsigned int Add(unsigned int a, unsigned int b);
|
||
|
unsigned int x, y, z;
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
x = 2;
|
||
|
y = 5;
|
||
|
z = Add(x,y);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
unsigned int Add(unsigned int a, unsigned int b)
|
||
|
{
|
||
|
return(a+b);
|
||
|
}
|