What is difference between static const and const in C with Example Code Kapil Friday, April 28, 2017 Add Comment Edit #include "stdafx.h" #include <stdio.h> #include <conio.h> int testa = 100; int testb = 101; int test() { ... Read More
How do I reverse the Interger Number in C with Example Code Kapil Friday, April 28, 2017 Add Comment Edit #include "stdafx.h" #include <conio.h> #include "stdlib.h" #include "stdio.h" #include "string.h... Read More
What is difference between Process and Thread? Kapil Friday, April 28, 2017 Add Comment Edit Thread vs Process Thread is the subset of Process. A process can contain many threads in it. Thread share the memory address space ... Read More
Explain Booting Sequence or Boot strap Process in Linux Kapil Friday, April 28, 2017 Add Comment Edit BIOS / SYSTEM Startup / Hardware Initialization / CPU Initialization: As I mentioned here in the first stage is for Hardware initializ... Read More
How do I use Fork, WAITPID & EXECL in Linux with C Program Kapil Friday, April 28, 2017 Add Comment Edit If you want to create the new process to do some other task without disturbing your current process then probably you need to create new p... Read More
How to Access Private Data Members in C++ Without Using Friend Function Kapil Friday, April 28, 2017 Add Comment Edit You can refer the below YouTube Video in which I have explained the complete program. Example code is given below. #include <stdio.... Read More
What is the Use of Function Pointer in C ? Kapil Friday, April 28, 2017 Add Comment Edit #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <string.h> /********** Addition ***********... Read More