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:
What is the Modularity of a Software System ?
Describe various actions of a shift reduce parsers.