Posts by Jean Paulo dos Santos Filho • 36 points
2 posts
-
1
votes2
answers631
viewsA: How to access bootstrap css?
Create a <div class="unique-section-name"></div> around the code you want to change the css properties present in bootstrap. .unique-section-name .bootstrap-class { css here } So you…
-
1
votes2
answers889
viewsA: Transfer content from one stack to another C++
Instead of creating an auxiliary stack, it is more optimized to use only an auxiliary variable. For example: #include <iostream> #include <vector> void printVector(std::vector<int>…