Write a C program to find minimum among three numbers.
#include<stdio.h> #include<conio.h> main() { int a,b,c,min; printf("\n enter three numbers"); scanf("%d %d %d",&a,&b,&c); min=a; if(b<min) min=b; if(c<min) min=c; printf("\n the minimum no. is %d",min); 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
Define software quality. Briefly explain McCall’s quality factors.
What are the differences between AVL Tree & Binary Search Tree ?
Write a C program to find factorial(using recursion) of any no.
Briefly Discuss about Requirements Analysis
Write short notes: B tree
Discuss the ACID properties of transaction.