Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
21615 Discussions

print float type

NOHWJ
Beginner
1,175 Views

Hi,

I'm trying to print float type data like this.

-----------------------

#include <stdio.h>

float data=0.123;

printf("%f",data);

----------------------

but, it shows empty in console display. No syntax ,build error before Run.

i tried %e , %g  and it also showed same results.

for integer type, it works. so i don't know how to solve.

0 Kudos
4 Replies
NOHWJ
Beginner
1,173 Views

I executed that  on Nios ii SW 

0 Kudos
Hazlina_R_Intel
Moderator
1,141 Views

Hi,

May I understand what computer program are you trying to run this code in? Thanks.


-Hazlina


0 Kudos
Hazlina_R_Intel
Moderator
1,141 Views

Just saw your other post saying that you are trying to run this in Nios tool.

Ignore my question.

I will assign this to Nios engineer.


0 Kudos
EricMunYew_C_Intel
Moderator
1,113 Views

can you try printf("%.3f",data);


0 Kudos
Reply