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 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.
Discuss Software Maintenance
Write short note on Call setup of GSM network for mobile-to-mobile call.
Short Notes : UML
Write short notes on the following:
What is Software Quality Management?
Find the time complexity of Binary Search Algorithm.