Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9083407
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T20:45:59+00:00 2026-06-16T20:45:59+00:00

I have the following code in C++ here: #include <iostream> int main(int argc, const

  • 0

I have the following code in C++ here:

#include <iostream>

int main(int argc, const char * argv[])
{
    goto line2;
line1:
    std::cout << "line 1";
    goto line3;
line2:
    std::cout << "line 2";
    goto line1;
line3:
    std::cout << "line 3";
    goto line4;
line4:
    std::cout << "Hello, World!\n";
    return 0;
}

If I made a larger program of lets say 10,000 lines of code and I decide I am never going to use functions that I write myself, I only use goto statements. I only use global variables. I am slightly insane in terms of best practices, but its for a very specific purpose. The question is, would this be efficient to jump around with goto statements? What if I have 1000 goto labels?

Do the goto statements translate directly into machine code which tells the computer just to JUMP to a different memory address? Is this a lower cost in the machine to jump around like this when compared with the cost to call a function?

I wish to know as I want to write a very efficient program to do some computations and I need to be very efficient without resorting to Assembly/Machine code.


No need to tell me this is a bad idea in terms of maintenance, understandability of code, best practices, I’m very aware of that, I just wish to have an answer to the question. I don’t want any debate between whether its good to use function calls or good to use goto.


To clarify the question, I am concerned in this case of using gotos only with a 10,000 line program as to how it would compare with a traditional program using functions. There are multiple ways to compare and contrast between these two programs, for example how would the CPU cache perform. What sort of saving would it give without function calls. Without a call stack, how would this impact on the CPU cache, as CPU caches usually keep the stack close. Would there be therefor a case where it is likely to have a negative performance hit due to the cache not being utilized correctly. What is the actual cost of calling a function as compared to a jump in terms of time efficiency. There’s a lot of ways to compare and contrast the two styles of programming in terms of efficiency.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T20:45:59+00:00Added an answer on June 16, 2026 at 8:45 pm

    Do the goto statements translate directly into machine code which tells the computer just to JUMP to a different memory address?

    Yes.

    Is this a lower cost in the machine to jump around like this when compared with the cost to call a function?

    Yes.

    However, when the compiler sees a function call, it doesn’t have to actually generate code to call a function. It can take the guts of the function and stick them right in where the call was, not even a jump. So it could be more efficient to call a function!

    Additionally, the smaller your code, the more efficient it will be (generally speaking), since it is more likely to fit in the CPU cache. The compiler can see this, and can determine when a function is small and it’s better to inline it, or when it’s big and better to separate it and make it a real function, to generate the fastest code (if you have it set to generate the fastest code possible). You can’t see this, so you guess and probably guess wrong.

    And those are just some of the obvious ones. There are so many other optimisations a compiler can do. Let the compiler decide. it’s smarter than you. It’s smarter than me. The compiler knows all. Seriously, Cthulhu is probably a compiler.

    You said not to, but I’m going to say it: I highly advise you to profile your code before deciding to do this, I can almost guarantee it’s not worth your time. The compiler (most of which are near-AI level smart) can probably generate as fast or faster code with regular function calls, not to mention the maintenance aspect.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have the following code: #include <iostream> int main(){ float number = 0.6;
I have the following code: #include <iostream> using namespace std; #include <string.h> int main(){
I have the following code #include <algorithm> #include <iostream> #include <vector> #include <functional> int
I have the following code #include <vector> #include <iostream> class A{ private: std::vector<int> x;
I have the following code #include <iostream> #include <vector> using namespace std; int distance(vector<int>&
Please have a look at the following code #include <iostream> using namespace std; int
i have following code for heapsort #include <iostream> using namespace std; void exch(int a[],int
Please have a look at the following code Main.cpp #include <iostream> #include <string> using
Lets say we have the following code: #include <iostream> #include <string> struct A {
I have the following first code in Visual C++: #include <iostream> using namespace std;

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.