| #include<iostream> using std::cout; using std::cin; using std::endl; #include<iomanip> using std::setw; #include<ctime> int isPresent(int * arr, int uBound , int v) { int i = 0 ; while( i < uBound) { if (*(arr+i) == v ) return i; i++; } return -1; } int main() { int a=0,b[
Devamını Görmek İçin Üye Girişi Yapmanız Gerekmektedir. |