This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Minggu, 21 Oktober 2012

Materi 1 Tempalte


template <class T>
T min(const  T &a, const T &b)
{
      if (a<b)
            return a;
      else
            return b;
};
template <class T, class U>
void  mins(const  T& a, const U &b){
      if (a<b)
            cout<< a;
      else
            cout<<b;
      cout<<endl;