acil c++ veya dev c de hazırlanmış müşteri adı ve soyadını tutan,aldığı malzeme ve fiyatını kayıt altına alan gerektiğinden müşteri bilgilerini silebileceğimiz müşteri tekip programının kodları lazım yardımcı olursanız sevnirim
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
#include <iostream>
#include <conio.h>
using namespace std;
main(){
cout << "Musteri adi: Mehmet";
cout << "Musteri adi: Ahmet";
getch();
return 0;
}