• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

can someone explain push back 0 to me?

Joined
1/15/15
Messages
238
Points
28
Here's my code


if (value2.compare("") != 0) //if value is not empty? not sure what this means
{
Act.push_back(something);
}
else
{
Act.push_back(0); // does this input 0 into Act or skip the line, etc?
}

Thank you
 
Back
Top