(Please, don't open newer and newer posts to add another sentence.)
Pascal is significantly easier to learn than C and e.g. Delphi with its Object Pascal language will also teach you OOP (object-oriented programming) which in the last two decades became the real shit.
Modula-2 and Ada, very similar languages, are even more recommended if you want to learn
elegant programming but, beware, they are stricter and have annoying mandatory syntax sugar. Modula-2 has been further developed from Pascal exactly for a learning language and Ada is used for very serious applications... why...? because if you can write a syntactically correct Ada program then it will also be semantically correct.

But seriously, Ada is used e.g. in the NASA because programs written in it are very reliable.
C is harder to learn, because of its weird, "compact" syntax which is different from writing kind of English sentences like in BASIC, Pascal (and co.), SQL, COBOL etc. But if you learn it, you'll see that it is extremely powerful and efficient. Then you can go on to C++, the OOP variant of C, and/or Java, kind of the next generation of OOP C.
I've been coding a serious application software in Pascal for a decade and a half but, after I've learnt C a few years ago, Pascal seems a child toy compared to it.