You are on page 1of 1

#include<stdio.

h>

int main()
{

int choice;
printf("*********CAR SHOW ROOM OF MAJID AND FARZAM************\n");
printf("0.about show room\n");
printf("1.HONDA\n");
printf("2.BMW\n");
printf("3.MERCEDEES\n");
printf("4.AUDI A 4\n");
printf("5.BYC\n");
printf("6.TRUK\n");

puts("enter your choice");


scanf("%d",&choice);
switch(choice)
{
case 0:
printf("*****About Show Room*****\n");
puts("A showroom refers to the area where an automobile manufacturer
displays its various models of cars");
break;
case 1:
printf("*****Honda*****\n");
puts(" Honda is a Japanese multinational corporation which is known for
manufacturing automobiles,motorcycles.\n ");
puts(" Honda has been the worlds largest manufacturer of motorcycles since
1959.\n ");
puts("Latest cars of honda models in 2018 are honda civic,honda vezel,honda
freed.\n ");
puts("Available colours are siver, black, white,red.\n");
puts("Honda Civic also comes in various variant starting from 20.4 lacs
PKR, however, top of the line civic costs 25.9 lacs PKR\n");
break;
case 2:
printf("***** Bmw*****\n");
puts(" It was 1916 when BMW established its first office in Munich. \n" );
puts("BMW cars are known for their performance, luxury, and power.\n");
puts("BMW 3 series has been the most popular vehicle. \n");
puts("Colour of bmw 3 series is Blue\n");
puts("Price of this beautiful car is 54.1 lacs\n");
break;

defaul:
printf("wrong entry0");
}
return 0;
}

You might also like