Page 1 of 1

Programming Languages

Posted: 15 Mar 2019, 12:59
by Liteniav
New to coding and I am wondering what programming language I should learn first. What are the pros and cons of the different languages in your opinion? What do you think about this post, Is it recent researches

Re: GameKeyboard touch control problem

Posted: 20 Mar 2019, 12:26
by andrewjoy
Could you please provide more info on the problem.

The name and model of the device
The OS of your computer

Re: Programming Languages

Posted: 26 Jul 2024, 17:03
by Inna
It depends, but here you can find info if you goal is to create single page application

Re: Programming Languages

Posted: 26 Jul 2024, 17:20
by idollar
I started with C: https://seriouscomputerist.atariverse.c ... 0(OCR).pdf

Code: Select all

#include <stdio.h>
main()
{
  printf("hello, ");
  printf("world");
  printf("\n");
}