Write a C program to print pattern below:
*
* *
* * *
* * * *
#include<stdio.h> #include<conio.h> main() { int n,i,j; char k='*'; printf("\n enter hou meny lines"); scanf("%d",&n); for(i=0;i<=n;i++) { for(j=0;j<i;j++) { printf("\t%c",k); } printf("\n"); } getch(); }
Output:
Write a C program to find both the largest and smallest number in list of integers.
Briefly Discuss about Requirements Analysis
Describe various actions of a shift reduce parsers.
Write a C program to find factorial(using recursion) of any no.