Introduction to C programming.

  This course is aimed to computer enthusiasts who want to enter the exciting world of programming. This course is not recommended to computer scientists with a high level of knowledge because the concepts explained are introductory. Students at the end of the course will have a vision of how…

Programming with Python Ebook

The “Programming with Python” ebook is now available with the course developed on this blog that also includes the project “Web Scrapping for SEO with Python”. Only during the month of July if you subscribe to our blog we send it to you for free to the email you indicate.

Aid for the Digitization of companies

  Lately, initiatives are emerging to promote digitization and create advanced technological projects that allow SMEs to be more competitive in the market.   A few months ago a publisher contacted me because I was considering the possibility of transferring their books in physical format to digital format (epub), in…

Advanced C Course – Class 4

Structured programming In C it is good practice to break code into functions and group them into modules. The paradigm of Structured Programming consists of identifying different functionalities and separating them into functions, thus avoiding having a very extensive code continuously because it makes its modification and maintenance very difficult.…

Advanced C Course – Class 3

Dynamic memory In C we can reserve memory dynamically at runtime. In practice there are two types of memory: static memory managed by the compiler and dynamic memory managed by the programmer. When variables are defined, the compiler assigns them the necessary space depending on the type of the variable.…