CSE320/hw3/src/main.c

15 lines
226 B
C
Raw Normal View History

#include <stdio.h>
#include "sfmm.h"
int main(int argc, char const *argv[]) {
double* ptr = sf_malloc(sizeof(double));
*ptr = 320320320e-320;
printf("%f\n", *ptr);
sf_free(ptr);
return EXIT_SUCCESS;
}