functions in c++ Unknown 02:35 Add Comment Functions :- A program may be broken up into manageable functions. Ecplainaton:- A function is a collection of statements that perfor... Read More
Arrays in C++ Unknown 23:50 Add Comment Arrays Array are used to store more than one data values in a single variable. Examples Write a program to add ten integers. #inc... Read More
programs using Nested loop Unknown 01:41 Add Comment N a sted Loops Using loops with in a loops is known as a n a sted loops. For e.g. For loops : Write a program to print the followi... Read More
programs using Do while loop Unknown 01:12 Add Comment Do While Loop Integers : #include<iostream.h> int main () { int a; a=1; do { cout<<"\n... Read More
Programs using while loop Unknown 23:06 Add Comment While Loop Integer #include<iostream.h> int main() { int a; a=1; while(a<=10) { cout<<"\n"<<a; ... Read More
programs using For loop Unknown 09:51 1 Comment For Loops Write a program to print first ten natural numbers. #include<iostream.h> #include<conio.h> void main(void) { ... Read More
Loops in c++ Unknown 09:21 Add Comment Loops Loops are used to repeat something up to a specific number of term or condition. or A loop is part of a program that repeats to ... Read More
Cin and Cout in c++ Unknown 09:01 Add Comment < iostream.h> The basic two basic functions that are define in iostream.h are "cin" and "cout" cin is used... Read More