Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~910 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for Srynx

the reason why you can't call main is because when you run a program you have a pointer at the current command that is being executed. When you call a function, the function code is copied onto the current stack (your program memory) and the pointer is jumped to the …

Member Avatar for CPLUSCPLUS
0
668
Member Avatar for JavaGuy147

Hey, I'm making a very simple program to find out how many months it would take to pay off credit card debt [code=C] // Calculate Credit Card Debt and How long it would take to pay it off #include <iostream.h> using namespace std; int main(void) { double Debt, APR, MinMonthPay; …

Member Avatar for Ancient Dragon
1
242