Skip to content

Instantly share code, notes, and snippets.

View ashish157's full-sized avatar
🏠
Working from home

ashish ashish157

🏠
Working from home
View GitHub Profile
@ashish157
ashish157 / bind.cpp
Last active June 20, 2017 07:13
std::bind
#include <iostream>
#include <functional>
using namespace std;
int add( int a, int b ) {
return a + b;
}
int main() {
auto addF = bind( add, 1, 2 );