Write a C program to print the following pattern output.
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
#include<stdio.h> #include<conio.h> main() { int i,j,n; printf("\n enter how many lines"); scanf("%d",&n); for(i=1;i<=n;i++) { for(j=1;j<=i;j++) { printf("\t%d",j); } printf("\n"); } getch(); }
Output:
Write a C program to print the following output.
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
Write a C Program That Uses Functions To Delete N – Charactres From A Given Position In A Given String.
What is Risk? Why Risk Analysis is done?
Write short notes on the following:
What is Decomposition in project estimation method ?
Briefly differentiate between CDMA and GSM technologies.
What are Halstead’s metrics?