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 To Count The Lines, Words, Characters In A Given Text.
Explain left factoring with suitable example.
What do you mean by co-channel interference and system capacity?
What is Decomposition in project estimation method ?
Write the characteristics of a good user interface.
Short Notes :Lines of Code (LOC)
Write a C program to convert any number into word.
Write short notes on the following :
a) BFS
b) Tail recursion
Briefly Discuss about Requirements Analysis