I want to create a multiplication table of a number in c programming . I am a beginner in this language. I initially did this by using printf ( ” 6 * 1 = %dn ” , 6 * 1 );
Over and over upto 6 * 10.
But I am looking to create a multiplication table which will return the answer for an nth value. So I don’t have to keep on printing and multiplying every step. Please help.