Hello readers, in this article we will discuss one of the most important algorithms that everyone should know…
Hello readers, in this article, we will discuss how to print/ display prime numbers upto 100 in PHP.…
Greetings Readers, in this article we will discuss the agile model in SDLC (System Development Life Cycle). Before…
Looping Or Iteration Structure (Looping Structure and Nested Loop) in C Introduction The term repetition or looping means executing the same section of code more than once if the given condition is true. A section of code may either be executed a fixed number of times or while the condition is true. If we…
Selection Or Decision Structure (Control Statements) Introduction In C all the statements are executed in a sequence as they appeared. But sometimes we may transfer control to the different…
C Programming Logic Programming logic flow of program from one statement to another. They are used to regulate the execution order of the program statements. There are three types of…
Compiling a C program QBASIC is interpreted language so no need to compile, it can be run directly. However, C has compiled language so it must be compiled before running…