// SecondProgram.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "stdio.h" int main(int argc, char* argv[]) { float i = 11.2; float j = 0.0; float quot; quot = i / j; printf("The quotient of %10.3f and %10.3f is: %10.3f \n", i, j, quot); return 0; }