F5F Stay Refreshed Software General Software C, C++ or Assembly ?

C, C++ or Assembly ?

C, C++ or Assembly ?

Pages (3): Previous 1 2 3 Next
C
citroPvP
Member
185
06-10-2025, 05:14 AM
#11
Thank you for your kind words, I'll make sure to prepare myself fully and engage with the material.
C
citroPvP
06-10-2025, 05:14 AM #11

Thank you for your kind words, I'll make sure to prepare myself fully and engage with the material.

C
Creeperson3rd
Member
81
06-10-2025, 06:27 AM
#12
With clearer requirements, I might have deployed something in a week using a widely available platform. This approach doesn’t require excessive effort. Other companies likely use similar pre-built solutions.
C
Creeperson3rd
06-10-2025, 06:27 AM #12

With clearer requirements, I might have deployed something in a week using a widely available platform. This approach doesn’t require excessive effort. Other companies likely use similar pre-built solutions.

D
davidxp2003
Junior Member
11
06-10-2025, 07:59 AM
#13
Professional Software Engineer here: Compilers are sufficient for optimizing where your overall design will have a far greater influence than any individual lines of code.
Don't waste time with assembly; any C/C++ compiler will perform better than you can achieve.
For GUI applications, stick with C++ and select modern windowing tools. Aim to avoid "C-isms" and follow current C++ best practices.
If developing a console app or something that only requires basic GUI and high performance, you can use C. Follow at least C99 coding standards and be careful not to overuse the API; minor performance improvements often lead to more stable, bug-free applications.
D
davidxp2003
06-10-2025, 07:59 AM #13

Professional Software Engineer here: Compilers are sufficient for optimizing where your overall design will have a far greater influence than any individual lines of code.
Don't waste time with assembly; any C/C++ compiler will perform better than you can achieve.
For GUI applications, stick with C++ and select modern windowing tools. Aim to avoid "C-isms" and follow current C++ best practices.
If developing a console app or something that only requires basic GUI and high performance, you can use C. Follow at least C99 coding standards and be careful not to overuse the API; minor performance improvements often lead to more stable, bug-free applications.

V
verygirlygamer
Junior Member
33
06-10-2025, 02:55 PM
#14
Simple explanation....
Machine code (also called assembly) created by a skilled programmer.
Long ago, I needed to improve a COBOL app for a less powerful computer. Back then, the only option was to rewrite it in assembly language.
Higher-level languages rely on compilers that transform high-level code into assembly instructions.
These compilers are excellent, but not as efficient as code written directly by a programmer with expertise. Still, compiled programs run faster than interpreted ones like Python.
The drawback of lower-level languages is that they become harder to maintain for someone who didn’t write them originally.
V
verygirlygamer
06-10-2025, 02:55 PM #14

Simple explanation....
Machine code (also called assembly) created by a skilled programmer.
Long ago, I needed to improve a COBOL app for a less powerful computer. Back then, the only option was to rewrite it in assembly language.
Higher-level languages rely on compilers that transform high-level code into assembly instructions.
These compilers are excellent, but not as efficient as code written directly by a programmer with expertise. Still, compiled programs run faster than interpreted ones like Python.
The drawback of lower-level languages is that they become harder to maintain for someone who didn’t write them originally.

F
Fugi_Pugi_
Junior Member
6
06-16-2025, 02:04 PM
#15
Another aspect that isn't discussed is the maintenance tail. Developing a software project that works and functions is one challenge; ensuring it remains functional, upgradable, and adaptable over several years is another, yet connected issue. Using assembly never makes it easier to maintain, as it restricts compatibility with different hardware. While x86 is common, it doesn't solve problems like needing to build a table application from the ground up without any existing code.
F
Fugi_Pugi_
06-16-2025, 02:04 PM #15

Another aspect that isn't discussed is the maintenance tail. Developing a software project that works and functions is one challenge; ensuring it remains functional, upgradable, and adaptable over several years is another, yet connected issue. Using assembly never makes it easier to maintain, as it restricts compatibility with different hardware. While x86 is common, it doesn't solve problems like needing to build a table application from the ground up without any existing code.

C
crazypotpie
Member
225
06-16-2025, 03:47 PM
#16
I would go even further to say that outside of *very* specific situations it is even inappropriate to manually perform individual assembly tasks these days. Individuals don't value how effective optimizing compilers have become... or how poor the writing of 99.99% of people in assembly is.

Essentially, I will make sure anyone who says they can do it faster in assembly is placed as far from a keyboard as possible.
C
crazypotpie
06-16-2025, 03:47 PM #16

I would go even further to say that outside of *very* specific situations it is even inappropriate to manually perform individual assembly tasks these days. Individuals don't value how effective optimizing compilers have become... or how poor the writing of 99.99% of people in assembly is.

Essentially, I will make sure anyone who says they can do it faster in assembly is placed as far from a keyboard as possible.

C
coco7432
Junior Member
9
06-18-2025, 02:06 AM
#17
C# offers many impressive capabilities
C
coco7432
06-18-2025, 02:06 AM #17

C# offers many impressive capabilities

N
Neidro
Senior Member
453
06-25-2025, 05:18 AM
#18
I don't see "cool features" as a factor when picking a programming language. Could you clarify which ones you mean and why they seem appealing?
N
Neidro
06-25-2025, 05:18 AM #18

I don't see "cool features" as a factor when picking a programming language. Could you clarify which ones you mean and why they seem appealing?

_
_DaniWolf_
Junior Member
22
06-25-2025, 05:31 AM
#19
C# is a highly structured programming language offering many features similar to C++, but without some of the challenges and risks found in other C-based languages. It's not as fast as C or C++, yet it performs comparably to most other high-level languages. If I require a straightforward GUI application that doesn't demand high performance, C# is my top choice. For tasks needing superior speed, I prefer C or C++.
_
_DaniWolf_
06-25-2025, 05:31 AM #19

C# is a highly structured programming language offering many features similar to C++, but without some of the challenges and risks found in other C-based languages. It's not as fast as C or C++, yet it performs comparably to most other high-level languages. If I require a straightforward GUI application that doesn't demand high performance, C# is my top choice. For tasks needing superior speed, I prefer C or C++.

S
SuperRxns
Member
102
06-25-2025, 02:28 PM
#20
Given that the OP and his group are unfamiliar with most of the three specified languages, the question is beginning in the wrong direction.
S
SuperRxns
06-25-2025, 02:28 PM #20

Given that the OP and his group are unfamiliar with most of the three specified languages, the question is beginning in the wrong direction.

Pages (3): Previous 1 2 3 Next