Ποιο είναι το αποτέλεσμα
του ακόλουθου προγράμματος;
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
main()
{
char *string = "51.2% are admitted";
double d;
char *pstring;
d=strtod(string, &pstring);
printf("The string \"%s\" is converted to \n",string);
printf( "%.2f and \"%s\"\n",d,pstring);
}