My first steps in the (old) program language C
I tried once in the past the program language C. But I read that C has updates as C++ and it is still in use with Linux, my operating system.
#include <stdio.h>
int main(){
const char* vorwahl;
int telnummer;
vorwahl = "0201";
telnummer = 344323;
printf("Telefonnummer: %s %d\n", vorwahl, telnummer);
return 0;
It will display the area code and the main number.
I’m using the gcc 14.3.1 compiler in Linux, Fedora 41 at the moment.
sven@fedora:~$ gcc –version
gcc (GCC) 14.3.1 20250808 (Red Hat 14.3.1-3)
Copyright (C) 2024 Free Software Foundation, Inc.
Dies ist freie Software; die Kopierbedingungen stehen in den Quellen. Es
gibt KEINE Garantie; auch nicht für MARKTGÄNGIGKEIT oder FÜR SPEZIELLE ZWECKE.