Engineering Text Books | Computer Science Engineering EBooks | Linux TCP/IP Administration “Linux TCP/IP Network Administration” offers a comprehensive tutorial on the fundamentals of Linux TCP/IP networking for new and intermediate-level network administrators, detailed coverage of advanced topics for experienced administrators, and wide-ranging reference material on the entire TCP/IP protocol stack for all Linux professionals. [...]
Archive for the ‘Programming Languages’ Category
C Programming queries | What is Stack Memory
C Programming queries | What is Stack Memory Stack memory is a single sufficiently large block of memory allocated to a task for temporary storage of data and program state in a Last In First Out order. Function calls use the stack to save and restore the program counter and other registers that will be [...]
C Programming queries | What is difference between Scripting and Programming Languages | Scripting Vs Programming Languages
C Programming queries | What is difference between Scripting and Programming Languages | Scripting Vs Programming Languages Scripting is a non-compiled program that will requires an interpreter to be running on the hardware to decode the script and perform the action. Scripting languages are not generally used in embedded systems because the interpreter would use [...]
C Programming queries | Why is Switch Statement faster than If-Else Statement | If-Else Vs Switch Statement
C Programming queries | Why is Switch Statement faster than If-Else Statement | If-Else Vs Switch Statement When compared between Switch and If-Else Statement, Switch Statement is always better. Switch Statement is faster than If-Else Statement. when a compiler sees a switch statement it builds a jump table indexed by the value of the variable [...]
C Programming queries | C or C++ Compiler is compatible with Windows 7
C Programming queries | C or C++ Compiler is compatible with Windows 7 There are many options available for the C-Programming Query whether to use C or C++ Compiler on Windows 7. Here are a few suggestion. Use Borland C++ compiler. It works fine with Windows 7 – 64 bit. Visual Studio 10 Premium can [...]
C Programming queries | How to gain knowledge on C Programming
C Programming queries | How to gain knowledge on C Programming Here are some basic tips on How you can gain knowledge on C Programming or on any other programming language or even on any preferred software. Ø Reading a lot of Books. To name a good one would be “Coders at Work”. In this [...]
C Programming queries | Flags and Bit Masks in C-Programming
C Programming queries | Flags and Bit Masks in C-Programming Bit flags and Bit masks use bitwise operators. A bit mask is simply an integer with one or more bits sets to 1. If you assign the integer any power of 2, it will set only one bit as 1 in the integer. Therefore, you [...]