Programming on C++ in linux

Is there any IDE which works exactly like vs on Windows so I could do the exam in the same way I practised in linux?

None.

There are IDEs other than Visual Studio that work on Windows, Mac and Linux. Two of the more popular ones:

Visual Studio Code
https://code.visualstudio.com/

Code::Blocks
http://www.codeblocks.org/

If you want to run native Windows apps in Linux consider using a Windows Emulator.
https://www.ubuntupit.com/top-15-best-windows-emulators-for-linux-enthusiasts/

Be grateful, VERY grateful, your instructor is not requiring you to use the ancient Turbo C compiler.
Personally, I'd highly, highly suggest that if your primary machine is Linux, then in order to actually understand Visual Studio development, use a virtual machine to install Windows as a guest.
Or do you recommend I use Windows too?

Yes, I recommend that you use the exact same compiler and library versions as your instructor.

It is surprisingly easy to write C++ code that works differently (or not at all) between systems and library versions. These problems are often artifacts of historical baggage, but sometimes they result from incorrect assumptions that are made in involved code.

You don't want to fight with unfamiliar portability issues while taking a test. Use the same tools as your instructor.

However, you don't need to completely ignore other tool-chains. In fact, using multiple compilers or multiple systems (especially with the warnings turned all the way up) is a great way to verify assumptions and troubleshoot problems.

For instance, when faced with an incomprehensible compiler error message, the first thing I do is use a different compiler. Very often, one of them will point straight to the issue. A big part of being an effective programmer is using all the tools available to you. Do this and you'll be informed of a good portion of the issues with your programs.
Last edited on
It appears that the OP was copy-pasted from Reddit, found here:
https://www.reddit.com/r/linux4noobs/comments/9g0gmu/programming_on_c_in_linux/

Since the original post is missing, I guess he/she/it was banned for spamming. Ridiculous.
This reddit cross posting is becoming more common.

Post a "legitimate" comment/question, and after some time passed edit the post to have spam link(s).
Yes, I removed it... sorry folks. It is getting ridiculous.
No worries, @Ganado. I didn't mean to criticize any regular user for banning spam accounts. That's the right thing to do.

What I consider ridiculous is the spammer's behavior. IMO, this seems more like subversive trolling than spamming, but I can't understand why anyone would care enough to bother.
Last edited on
Also, check out this thread:
http://www.cplusplus.com/forum/unices/256418/

In this thread, the original post was a copypaste from reddit or some other forum, and was about linux. You can see on the edit time that the post was edited a month later, and unrelated text about a broken camera was added to it!

If you search the text, you'll find this forum post: https: //www.canonrumors.com/forum/index.php ? threads/powershot-g3x-possible-lens-issue.37393/
(remove spaces)

THAT post was also edited with a link after the original posting (you can tell because the quoted reply doesn't have the link in it).

So yeah, this thing of pasting some bullshit and then adding a link to it apparently affects other less-moderated forums as well.
Last edited on
I can't understand why anyone would care enough to bother.

Not having a life motivates the trolls.
Topic archived. No new replies allowed.