I have the foll line of code.
int i =125;
char s[]="hello";
char c='z';
printf("%f",i);
printf("%f",c);
printf("%f",s);
output -936283178250000000000.000000 -936283178250000000000.000000 -936283178250000000000.000000 what does this mean??
|
I have the foll line of code.
output -936283178250000000000.000000 -936283178250000000000.000000 -936283178250000000000.000000 what does this mean?? |
||||
|
|
It means you are using the incorrect formatting directives. Try this instead:
alternatively, cast your two values in When you use the incorrect specifier, the behavior is undefined, which is what you are observing. |
||||
|
|
Where did you get %f from? If not mistaken %f is a C++ parameter for floating point numbers. By you using:
You are telling the compiler that everything you are printing is a floating point number (a.k.a decimal), when in fact it should be
|
|||
|
|
|
Using a wrong format specifier in printf will result in undefined behavior. When I say undefined behavior, it can give an output but the output may vary from one C implementation to another. Usually this will result in a warning. GCC compiler will issue a warning for this. |
|||
|
|