473,587 Members | 2,526 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Higer level code is always specialized and often full of unfixable bugs.


Hi Olaf_Baeyens ( and Linonut ),

Microsoft C++ is really it's latest version of MS_C,
as Microsoft is not supporting the latest C standard, C99.

cout and the STL are pure garbage and should not be used, I say.
All the same, I use C++ ( MS_C_7 )
as it allows be to declare variables in_between statements.

I also use C++'s & a lot as references look cleaner than pointers.

C has been around for a long time,
and will continue to be around long after C# and Java are forgotten.

The higer a language is,
e.g. VBA scripts in MS_Word, the shorter it's lifespan.

The problem with high_level languages like C# and Java
is that they never quite reach the status of being a genuine standard,
as few can agree on what the higher level stuff should look like.

Higer level code is always specialized and often full of unfixable bugs.

P.S. Experienced C coders don't require weeks just to create a button.

Nov 17 '05 #1
26 1999
Jeff_Relf wrote:
Hi Olaf_Baeyens ( and Linonut ),

Microsoft C++ is really it's latest version of MS_C,
as Microsoft is not supporting the latest C standard, C99.
First you're all like low-level and stuff, and then you subscribe to a
garbage language like c++

c is the answer and it always will be.

c/unix/linux is the lingua franca of the whole world.

all variants as pasty-faced dough languages for corporate pretty boys
who tote around UML diagrams in "architectu ral meetings".


cout and the STL are pure garbage and should not be used, I say.
All the same, I use C++ ( MS_C_7 )
as it allows be to declare variables in_between statements.

I also use C++'s & a lot as references look cleaner than pointers.

C has been around for a long time,
and will continue to be around long after C# and Java are forgotten.

The higer a language is,
e.g. VBA scripts in MS_Word, the shorter it's lifespan.

The problem with high_level languages like C# and Java
is that they never quite reach the status of being a genuine standard,
as few can agree on what the higher level stuff should look like.

Higer level code is always specialized and often full of unfixable bugs.

P.S. Experienced C coders don't require weeks just to create a button.

Nov 17 '05 #2

Hi Chinese_Pope, Ya writ: << C is the answer and it always will be. >>

And the most recent version of that, according to Microsoft, is C++,
because they're not going the C99 route.

C++ is just as low as C, because cout and the STL are optional.

Nov 17 '05 #3
> P.S. Experienced C coders don't require weeks just to create a button.

I was making it sounding a little bit more dramatic. :-)
I was not referring to the button itself, but about the code behind that
button that should interoperate with the user interface.
E.g. active feed-back like a status bar, progress bar,....

---
http://www.skyscan.be
Nov 17 '05 #4

Hi Olaf_Baeyens, Re: My comment that experienced C coders
don't require weeks just to create a button,

You told me: << I was making it sounding a little bit more dramatic. :-)
I was not referring to the button itself, but about the code behind that
button that should interoperate with the user interface.
E.g. active feed-back like a status bar, progress bar. >>

It takes years to really perfect code,
because testing dwarfs the time it took to bang out the code.

During those years, short-sighted compromises,
like using C#, Java, COM or HTML, can come back to bite you,
....beacuse the C++ guy could sneek up behind you and offer a better product.

Nov 17 '05 #5
> First you're all like low-level and stuff, and then you subscribe to a
garbage language like c++

c is the answer and it always will be.

c/unix/linux is the lingua franca of the whole world.


How odd that a lot of people claming that C is the top and linux is the top
tend to use fake names in the posts?
And that people that are more realistic actually are more brave to user
their real names.

--
http://www.skyscan.be
Nov 17 '05 #6
begin virus.scr Olaf Baeyens wrote:
First you're all like low-level and stuff, and then you subscribe to a
garbage language like c++

c is the answer and it always will be.

c/unix/linux is the lingua franca of the whole world.


How odd that a lot of people claming that C is the top and linux is the
top tend to use fake names in the posts?
And that people that are more realistic actually are more brave to user
their real names.


How come that you think that JBailo is actually a linux user?
Nov 17 '05 #7
On Thu, 07 Apr 2005 01:18:27 -0700, American Pope
<am***********@ vatican.us> wrote:
Jeff_Relf wrote:
Hi Olaf_Baeyens ( and Linonut ),

Microsoft C++ is really it's latest version of MS_C,
as Microsoft is not supporting the latest C standard, C99.


First you're all like low-level and stuff, and then you subscribe to a
garbage language like c++

c is the answer and it always will be.

c/unix/linux is the lingua franca of the whole world.

all variants as pasty-faced dough languages for corporate pretty boys
who tote around UML diagrams in "architectu ral meetings".

:

Real men program in machine code through binary toggle switches on
front panels.
'C' is for wimps.
Nov 17 '05 #8

Hi Olaf_Baeyens ( and Peter_Kohlmann, Bailo ),

You asked: << Odd, why would somone name a screen saver with my name in it
and send as an attachment it to this newsgroup ? >>

Pete started his post with: << begin virus.scr Olaf Baeyens wrote: >>
I he does that because of his brain tumor, I believe.

Also, Pete, as a demo of Linux's Knode in action,
redirected your post to parts unknown... again, I blame it on his tumor.

You asked: << How odd that a lot of people claming that C is the top
and linux is the top tend to use fake names in the posts ?
And that people that are more realistic
actually are more brave to user their real names. >>

Jeff_Relf is my given name, I was born in Seattle at the start of 1960.
Bailo, a.k.a. Chinese_Pope, is a rapid nymshifter in Comp.OS.Linux.A dvocacy .

C# might well be the best language for certain things,
just not the things that do.

Nov 17 '05 #9

Hi Michael_Gray, Ya writ: << Real men program in machine code
through binary toggle switches on front panels. C is for wimps. >>

No, Real men design and forge their own CPUs, using ores dug out by hand.

Nov 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

354
15709
by: Montrose... | last post by:
After working in c# for a year, the only conclusion I can come to is that I wish I knew c. All I need is Linux, the gnu c compiler and I can do anything. Web services are just open sockets hooked up to interfaces. The Gtk is more than enough gui.
6
2009
by: Dave | last post by:
Hello all, Consider this function template definition: template<typename T> void foo(T) {} If foo is never called, this template will never be instantiated. Now consider this explicit instantiation of foo:
269
1650
by: Montrose... | last post by:
After working in c# for a year, the only conclusion I can come to is that I wish I knew c. All I need is Linux, the gnu c compiler and I can do anything. Web services are just open sockets hooked up to interfaces. The Gtk is more than enough gui.
65
5243
by: Chris Carlen | last post by:
Hi: From what I've read of OOP, I don't get it. I have also found some articles profoundly critical of OOP. I tend to relate to these articles. However, those articles were no more objective than the descriptions of OOP I've read in making a case. Ie., what objective data/studies/research indicates that a particular problem can be solved more quickly by the programmer, or that the solution is more efficient in execution time/memory...
0
7854
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8219
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8349
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7978
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6629
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5722
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5395
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3882
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1192
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.