Arama

Aşağıda aramanın sonuçları listelenmiştir.

Fulltext results:

Kitap Stok Programı
22 tane bulundu, Son değiştirilme:
lass { public: int callno; //call number of the book string bookname; //name of the book string author; //author of the book Book(int c_no,string bname,string auth); void Prin... int c_no,string bname,string auth) //constructor of the Book class { callno=c_no; author=auth; boo
Banka Sıra Simülasyonu Yapan Program
18 tane bulundu, Son değiştirilme:
Node<T>::NextNode(void) const //it returns next of the Node { return next; } template <class T> vo... T>* head, const T& item) //Adds a node at the end of the linked list { //it takes the head of the linked list Node<T> *newNode, *currPtr=head;... rPtr=currPtr->NextNode(); //goes at the end of the list newNode=GetNode(item); //Ge
Reverse Polish Notation Calculator
13 tane bulundu, Son değiştirilme:
int StackList[MaxStackSize]; //Stores the values of stack items int TypeList[MaxStackSize]; //Stores the type of items i.e. 1 for operators 0 for operands int t... detects whether the item is an operator or a part of operand. case '+': // detects an addit... pression while(!s2.StackEmpty()) //it leaves out of the while when all the items are popped from s2
Telefon Defteri Programı
10 tane bulundu, Son değiştirilme:
* Record2,int itemno); void MainMenu(); void SavetoFile(Person* Record2,int end); void ChangeEntry(Per... is taken from user it saves the Record SavetoFile(Record,last); exit=0; //in the case 7 it... i<100;i++) dbFileRd.read((char*) (Record2+i),sizeof *Record2); dbFileRd.close(); //close the file }... tItems(Person* Record2,int end) //Lists the items of the Record2 { clrscr(); //clearscreen for(
  • anasayfa.txt
  • Son değiştirilme: 2019/05/08 21:25
  • (Dışarıdan düzenle)