Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
If you want to compare these 2 printing methods, do it yourself - removing
<< "\n"
from"Hello cout" << "\n"
reduces the number of assembly commands from 10 to 4, just 1 more than withprintf
, andputs
is in face just 2 assembly commands - 1 less thanprintf
.This is not the most efficient option.
This is the most efficient solution.