Write a C program to print the following output.
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
#include<stdio.h> #include<conio.h> main() { int n,i,j; printf("\n enter hou meny lines"); scanf("%d",&n); for(i=0;i<=n;i++) { for(j=0;j<i;j++) { printf("\t%d",i); } printf("\n"); } getch(); }
Output:
Write a C Program That Uses Functions To Delete N – Charactres From A Given Position In A Given String.
Write a C- Program To Determine If The Given String Is A Palindrome Or Not.
Difference between ISO and CMM standards.
What is Risk? Why Risk Analysis is done?
Briefly Discuss about Requirements Analysis