#include <stdio.h>
int main( )
{
    float a = 25.345, c ;
    float *b ;

    b = &a ;
    c = *b;

    printf ("%f %f %f", a, *b, c);
}