Code:
#include <stdio.h>
#include <stdlib.h>
int main()
{
myf(3.0);
return 0;
}
double myf(double x)
{
return x;
}
|
Newbie Member
|
|
| 29Oct2006,02:07 | #1 |
|
when i compile a simple program in Dev C++ i get error:" conflicting types for 'myf' "
Code:
#include <stdio.h>
#include <stdlib.h>
int main()
{
myf(3.0);
return 0;
}
double myf(double x)
{
return x;
}
Last edited by shabbir; 29Oct2006 at 10:09.. Reason: Code formating. |
|
Go4Expert Founder
|
![]() |
| 29Oct2006,10:12 | #2 |
|
You have posted it as an Article under the Article / Source code section. I have moved it to the Queries and Discussion forum.
Use the code blocks for putting codes in the post I am not sure why there should be an error but I dont have the compiler so I could not solve it but try putting the function body above main and see if it solves the problem. |
|
Contributor
|
|
| 29Oct2006,13:46 | #3 |
|
Quote:
Originally Posted by hamidr To rectify it, provide the prototype of the function and stay happy. |