Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What language should I learn as a bridge to C (and derivatives) [closed]

Tags:

python

c

The first language I learnt was PHP, but I have more recently picked up Python. As these are all 'high-level' languages, I have found them a bit difficult to pick up. I also tried to learn Objective-C but I gave up.

So, what language should I learn to bridge between Python to C

like image 274
Josh Hunt Avatar asked Nov 28 '22 06:11

Josh Hunt


1 Answers

It's not clear why you need a bridge language. Why don't you start working with C directly? C is a very simple language itself. I think that hardest part for C learner is pointers and everything else related to memory management. Also C lang is oriented on structured programming, so you will need to learn how to implement data structures and algorithms without OOP goodness. Actually, your question is pretty hard, usually people go from low level langs to high level and I can understand frustration of those who goes in other direction.

like image 74
aku Avatar answered Dec 15 '22 09:12

aku