Computer Science, asked by khushboo9550, 4 months ago

write a program to multiply three numbers​

Answers

Answered by borhaderamchandra
0

Answer:

main()

{

into a,b,c,ans;

printf("enter numbers");

scanf("%d%d%d",&a,&b,&c);

ans=a*b*c;

printf ("multiplication of a*b*c=%d",ans);

}

Similar questions