I have a given code, in my opinion there is something wrong with that code: I compile under XINU.
The next variables are relevant :
unsigned long ularray[];
int num;
char str[100];
There is a function returns int:
int func(int i)
{
return ularray[i];
}
now the code is like this:
num = func(i);
sprintf(str, "number = %lu\n", num);
printf(str);
The problem is I get big numbers while printing with %lu, which is not correct.
If i change the %lu to %d, i get the correct number. For example: with %lu i get 27654342, while with %d i get 26, the latter is correct;
The variables are given, the declaration of the function is given, i write the body but it must return int;
My questions are:
I'm not familiar with 'sprintf' maybe the problem is there?
I assigned unsigned long to int and then print the int with %lu, is That correct?
How can i fix the problem?
Thanks in advance.
Thanks everyone for answering. I just want to mention I'm working under XINU, well i changed the order of the compilation of the files and what you know... its working and showing same numbers on %lu and %d.
I'm well aware that assigning 'unsigned long' to int and then printing with %lu is incorrect coding and may result loss of data. But as i said, the code is given, i couldn't change the variables and the printing command.
I had no errors or warnings btw. I have no idea why changing the compilation order fixed the problem, if someone have an idea you are more then welcome to share.
I want to thank all of you who tried to help me.
int? PS"%lu"is the proper format specifier forunsigned long..."%d"treats the argument as asigned int, which works here sincenumissigned int. You should be careful when mixing signedness like that. – oldrinb Aug 25 '12 at 7:28%d? The fact that you're getting different results by moving the code around shows that you're doing something wrong (knowingly too - not good). What part of the code can't you change? – Mat Aug 25 '12 at 12:39