programs using Arrays Unknown 23:53 Add Comment Write a program to add ten integers. #include<iostream.h> int main() { int a[10],b,c; for(b=0;b<10;b++) { co... 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
Display pass or fail using if else Unknown 01:53 Add Comment Write a program that accept marks of a statement and display pass or fail message #include<iostream.h> int main() ... Read More
display menu choice using if else Unknown 01:52 Add Comment Write a program that accept two integers and than show a choice to display the result according #include<iostream.h> int main(... Read More
check the grade of marks obtained using if else Unknown 01:49 Add Comment Write a program to check the grade of marks obtained #include<iostream.h> int main() { float a,b,c; cout<<"\n"... Read More