Computer Science, asked by vicky6934, 10 months ago

wap on a hotel menu in c program using do while loop ?

Answers

Answered by Mukeshgorain338
1

Answer:

You can add you menu list here

Explanation:

#include<stdio.h>

#include<conio.h>

void main()

{

int a ;

printf("Enter what you want to chose for dinner");

do {

printf("\nPaneer\nRice\nFried Rice\n");

scanf("%d",&a);

}while(a)

printf("Your order is prepared ");

}

Similar questions