Write a program in c to find and print the product p = 1 * 2 * 3 * 4 * ...... *10
#include< #include< #include< main() { int i, p; p = 1; for ( i=1; i < = 10; i++) { p = p * i; } printf("\n The product is %f \n", p); return(0); } |
---|
#include< #include< #include< main() { int i, p; p = 1; for ( i=1; i < = 10; i++) { p = p * i; } printf("\n The product is %f \n", p); return(0); } |
---|
© Blogger templates Newspaper III by Ourblogtemplates.com 2008
Back to TOP
0 comments:
Post a Comment