Write a C program to find the multiplication table of any no.
#include<stdio.h> #include<conio.h> main() { int n,i=1; printf("\n Enter any number"); scanf("%d",&n); while(i<=10) { printf("\n %d * %d = %d",n,i,n*i); i++; } getch(); }
Output:
Write a C Program That Uses Functions To Delete N – Charactres From A Given Position In A Given String.
Write short notes on the following:
What is feasibility study? Explain different types of feasibility study.