Puzzle E15

Intermediate Result

What is displayed by this program?

#include <stdio.h>
#include <stdlib.h>

/* Puzzle E15 -- sneaky types */
int main()
{
  int a = 9;
  int b = 2;
  double sum;
  
  sum = a/b;
  
  printf("The sum: %f\n", sum );   
  return 0;
}


Answer         Next Page         Previous Page Home