Bitbeisser, I want to show those in printed output. How will I do that? The program is this and I want to write a11,a12,a13,a21,a22,a23,a31,a32,a33,D3 as a11,a12,a13,a21,a22,a23,a31,a32,a33,D3 in printed output.
include<stdio.h>
main()
{
float a11,a12,a13,a21,a22,a23,a31,a32,a33,D3;
printf("Enter values of a11,a12,a13,a21,a22,a23,a31,a32,a33 successively with a space and then press enter.\n");
scanf("%f%f%f%f%f%f%f%f%f",&a11,&a12,&a13,&a21,&a22,&a23,&a31,&a32,&a33);
D3 = a11*(a22*a33-a32*a23)-a21*(a12*a33-a32*a13)+a31*(a12*a23-a22*a13); //formula of determinant of third order//
printf("The value of the determinant is = %f\n",D3);
}