Intermediate Part Ii

  • Uploaded by: Muhammad Rana Farhan
  • 0
  • 0
  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Intermediate Part Ii as PDF for free.

More details

  • Words: 63
  • Pages: 1
Intermediate Part II Problem: Make a program that print the table. #include #include <stdio.h> void main() { clrscr(); int tableNo; // Variable Decleration printf("Enter the Table no that you want to Print: "); scanf("%d",&tableNo); // Variable Input from User for(int i=1;i<=10;i++) printf("%d * %d = %d\n",tableNo,i,tableNo*i); getch(); }

Click the link below to see more examples URL: http://ravianeducation.blogspot.com E-Mail: [email protected] Farhan: 03008855006

Related Documents


More Documents from ""

Factorial
June 2020 13
Lecture 10
June 2020 19
Scientific Calculator
June 2020 8
Intermediate Part Ii
June 2020 9
Intermediate Part Ii
June 2020 6