Featured
-
Binary search in C++
If you want to find the presence of a element in a
by kumar.abhishek
Tags
Use of const keyword with pointers
//============= A simple program to demonstrate the use of "const" keyword with pointers==================
/*
* By => Bipin Gosain
* Date => 17/4/2016
*/
#include <iostream>
int main(){
using std:: endl;
...