int arr[10][20] = {0}; // easier way
// this does the same
memset(arr, 0, sizeof arr);
Code Example |
---|
Cpp :: findung the mode in c++ |
Cpp :: map defualt value c++ |
Cpp :: replace komma with space C++ |
Cpp :: iterating string in cpp |
Cpp :: cpp merge two sets |
Cpp :: mpi_bcast |
Cpp :: c++ unordered_map check if key exists |
Cpp :: c++ kruskal algorithm |
Cpp :: c++ shared pointer |
Cpp :: double to string c++ |
Cpp :: how to use string variable in switch case in c++ |
Cpp :: count word accurances in a string c++ |
Cpp :: unordered_map header file c++ |
Cpp :: syntax c++ |
Cpp :: c++ code for quicksort |
Cpp :: sort using lambda c++ |
Cpp :: c++ vector average |
Cpp :: iteraate through a vector |
Cpp :: print all elements of vector c++ |
Cpp :: cpp binary tree |
Cpp :: cpp ifstream |
Cpp :: decltype in c++ |
Cpp :: remove element from array c++ |
Cpp :: on component begin overlap c++ |
Cpp :: c++ how to read from a file |
Cpp :: check if whole string is uppercase |
Cpp :: check if set contains element c++ |
Cpp :: C++ Area and Perimeter of a Rectangle |
Cpp :: how to sort vector of struct in c++ |
Cpp :: c++ ternary operator |