nirmala h
Member level 1
- Joined
- Jan 18, 2011
- Messages
- 36
- Helped
- 6
- Reputation
- 12
- Reaction score
- 6
- Trophy points
- 1,288
- Location
- Bangalore, India
- Activity points
- 1,530
Hi all,
What is the difference between C & Embedded C ?And also solve this program
To generate 100 Fibbonacci no's in C will write as
while(n<100)
{
r=p+q;
p=q;
q=r;
printf("%d",r);
}
How do we write in Embedded...?
What is the difference between C & Embedded C ?And also solve this program
To generate 100 Fibbonacci no's in C will write as
while(n<100)
{
r=p+q;
p=q;
q=r;
printf("%d",r);
}
How do we write in Embedded...?