- What is the difference betwen high level languages and low level languages?
- What does a high level language do that a low level language cant?
- Is c# an extnsion to c++?
iConqueror 27 Junior Poster
Recommended Answers
Jump to PostWhat is the difference betwen high level languages and low level languages?
Here is a bash script to answer your question:
#!/bin/bash echo "high level languages" | sed -e 's/\ /\n/g' > hl.txt echo "low level languages" | sed -e 's/\ /\n/g' > ll.txt diff hl.txt ll.txt rm …
Jump to PostTip: learn both.
Even if you're programming in a high level language, sometimes it's usefull to know whats going on underneath. For example, say knowing how tail-recursion can effect the stack, or say knowing the mechanics of stack smashing. Even futher, understanding how the Cashe works (this is hardware-low level) …
All 5 Replies
Reverend Jim 5,225 Hi, I'm Jim, one of DaniWeb's moderators. Moderator Featured Poster
iConqueror commented: cheers +0
mike_2000_17 2,669 21st Century Viking Team Colleague Featured Poster
iConqueror commented: thankyou +0
Dani 4,658 The Queen of DaniWeb Administrator Featured Poster Premium Member
iConqueror commented: thankyou +0
Hiroshe 499 Posting Whiz in Training
iConqueror 27 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.