Dec 5, 2020How integers are stored in memoryAll these three data types int, signed int and float, 32 bits are allocated in memory. Let us try to understand one by one. 1. int a = 456; RHS value is 456. Now let us convert it to binary. 256+0+64+32+0+0+4+0+0 1 0 1 1 0 0 1 0 0…Programming3 min readProgramming3 min read
Dec 5, 2020What are code libraries.Re-invent the wheel? No no no… It is a waste of time and energy, the same happens with computer code. What are code libraries? In computer science, a library is a collection of resources used by computer programs, often for software development. …Libraries3 min readLibraries3 min read
Dec 4, 2020Compilation process of a program.Compilation process of a program. Before knowing the compilation processes of a program, we must know what is a “Compiler” What is a compiler? A compiler is a computer program that translates a program written in one programming language into another programming language, generating an equivalent program that the machine will…Programming3 min readProgramming3 min read
Nov 26, 2020Do you know how the Linux shell interprets a command?If you are knowledgeable about the Gnu/Linux operating system and you use the terminal, maybe you already know what is a shell, but do you know how it’s engineering process is behind it? ¡Today you will learn how!. if you want a quick answer here a diagram (algorithm of the…Linux3 min readLinux3 min read