After confirming input Segmentation fault pops up and I can't see why. I was told to use fgets and sscanf in loop to read an undefined number of floats from terminal input and this is what i came up with..
Code
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#define EMPTY 3.141592
#define BUFFERSIZE 100
void removeSubstring(char *s,const char *toremove){
  while( (s=strstr(s,toremove)) )
    memmove(s,s+strlen(toremove),1+strlen(s+strlen(toremove)));
}
int main(){
    int x=0;
    int y=0;
    float a[BUFFERSIZE] = {EMPTY};
    char buffer[BUFFERSIZE] = {EMPTY};
    char *pos;
    char *start = 0;
    int space = ' ';
    printf("Input: ");
    fgets(buffer, BUFFERSIZE, stdin);
    while(x< BUFFERSIZE){
            sscanf(buffer, "%f ", &a[x]);
            pos = strchr(buffer, space);
            removeSubstring(start, pos);
            x++;
            }
    printf("Saved input: ");
    while(y<BUFFERSIZE && a[y] != EMPTY){
            printf("%.2f", a[y]);
            y++;
            }
    printf("\n");
    return 0;
}
Edit: Increased both array sizes and removed feof
