Author: Editorial Team
Computer Fundamentals Tutorial
Computer Fundamentals Tutorial Computer is an advanced electronic device that takes raw data as an input from the user and processes it under the control of a set of instructions (called program), produces a result (output), and saves…
Read More »Who is who in Computer Science
Who is who in Computer Science Ali Aydar Ali Aydar is a computer scientist and Internet entrepreneur. He is the chief executive officer at Sporcle. He is best known as an early employee and key technical contributor at…
Read More »Types of Functions in C
Types of Functions in C In C Programming Language, functions are divided into two parts based on providing the function definition. Those are as follows… 1)System Defined Functions (SDF) 2)User Defined Functions(UDF) 1)System Defined Functions In C Programming…
Read More »Functions in C
Functions in C In case of solving a distinct small problems, we can write the solution program easily. But in case of solving a larger problems we write (create) a program to solve the program by dividing that…
Read More »Break, continue, and goto in C
Break, continue, and goto in ‘C’ In c programming language, there are control statements that do not need any condition to control the execution flow of the program. These control statements are called as unconditional control statements….
Read More »‘for’ statement in C
‘for’ statement in C The for statement is used to execute a single statement or a block of statements repeatedly as long as the given condition is TRUE. The for statement has the following syntax and execution flow…
Read More »Statement ‘do-while’ in C
Statement ‘do-while’ in C The ‘do-while’ statement is used 4 the execution of a single statement or block of statements again & again as long as the condition given is TRUE. The do-while statement is also known as…
Read More »‘while’ statement in C
‘while’ statement in C Let us consider a situation in which we execute a single statement or block of statements repeatedly for required number of times. Such kind of problems can be solved by using looping statements in…
Read More »‘switch’ statement in C
‘switch’ statement in C Let us consider a situation in which we have more than one options out of which we need to select/recognise only one option that is to be executed. Such kind of problems can be…
Read More »‘if’ Statement in C
‘if’ Statement in C What is Decision Making Statement? In ‘c’ language, execution flow of the program is, line by line from top to bottom. That means the c program is executed line by line from the main…
Read More »