Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
Is it possible to store an float in integer variable and print it the integer variable as the float
0
votes
asked
Jun 7, 2019
by
mani kandan
(
120
points)
I want to get a float number and store it in an interger variable and print that integer variable so that it prints the float value which is stored in it ?
Please
log in
or register to answer this question.
1 Answer
0
votes
answered
Jun 8, 2019
by
DM07
the step at which you store the float in int variable the number will be rounded off as an integer and stored and hence whenever you call that variable you will get the whole number and not the desired float number
commented
Jun 22, 2019
by
Robert Parry
(
240
points)
edited
Jun 22, 2019
by
Robert Parry
#include <stdio.h>
main()
{
float x = 1234.123;
int i;
*(float *)&i = x;
printf("actual integer value: %d\n", i);
printf("float value stored in integer: %f", *(float *)&i);
}
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...