EASY QUIZ ON LOOPS IN C PART 3
Quiz on loops in C part 3, will help learners to test their knowledge about concept of loops. It will also help them to develop their technical skills.
Let's sail across an ocean of IT
Quiz on loops in C part 3, will help learners to test their knowledge about concept of loops. It will also help them to develop their technical skills.
Infinite loop in C programming All loops depends on condition and if the condition is true then loops will execute the block of code, and if the condition is false loops will terminate their self. But what is we don’t want to terminate any loop in c program? We take help of infinite loop. In … Read more
Quiz on loops in C part 2, will help learners to test their knowledge about concept of loops. It will also help them to develop their technical skills.
Loops in c are of following types, for loop, while loop, do-while loop and nested loop. Loops are used to run block of code continuously till condition is match
Quiz on Operators in C part 2, will help learners to test their knowledge about concept of operators. It will also help them to develop their technical skills.
Operators in C programming helps us to perform various types of operations, helps to manipulate data and make decision. In C Operators are of various types.
Quiz on Operators in C part 2, will help learners to test their knowledge about concept of operators. It will also help them to develop their technical skills.
In mathematics if we have been asked to find the factorial of any number then, we will start multiplying that number to it’s previous numbers until we reach 1.
Python program for Merge sort, this will help university student and beginners to understand the working of merge sort. It is one of the easy sort to study.