Q4
Single choice
According to the AAPCS (with soft floating point linkage), when the caller "func" calls sprintf, where is the value of the parameter "x" placed?
#include <stdio.h>
void func(double x, int i , char *buffer)
{sprintf(buffer, "pass %d: value = %f\n", i, x); }