Its a complete platform for the users to have an excess to the C and C++programs which are very useful for the programmers as well as the students who feel that programming is a tricky thing to handle....!!!
On this blog i will provide you the basic as well as the more solid programs which i am pretty sure will be very helpful to you people...!!! Thanks for visiting
#include<stdio.h>
int main()
{
int table,x;
printf("Enter the number to print table:");
scanf("%d",&table);
for(x=1;x<=10;x++)
{
printf("%d X %d = %d\n",table,x,x*table);
}
getch();
return 0;
}
No comments:
Post a Comment