Find the largest number among three number in C++ Find the largest number among three number in C++ #include <iostream> using namespace std; int […]
Read moreTag: c program
C++ Factorial Program
C++ Factorial Program C++ Factorial Program #include<iostream> #include<math.h> using namespace std; int fact(int n){ Β Β int number=1; Β Β for(int i=n;i>=1;i–){ Β Β […]
Read moreC++ Factorial Program
C++ Factorial Program C++ Factorial Program #include<iostream> #include<math.h> using namespace std; int fact(int n){ Β Β int number=1; Β Β for(int i=n;i>=1;i–){ Β […]
Read moreC++ FIRST PROGRAM
C++ FIRST PROGRAM C++ FIRST PROGRAM #include<iostream.h> using namespace std; int main () { cout<<“Hello World !”; return 0; } […]
Read moreC++ FIRST PROGRAM
C++ FIRST PROGRAM C++ FIRST PROGRAM #include<iostream> using namespace std; int main () { cout<<“hello world”; return; } Topics Covered […]
Read moreFish pattern program
#include<stdio.h> int main() { int x,y,t; for(t=0;t<50;t++) { for(y=7;y>-8;y–) { for(x=-7;x<=10;x++) { if(y==7) { if((x+t)%2!=0) printf(“–“); else printf(“~~”); } else if(y==-7) printf(“__”); else if(y==6) […]
Read moreC notes from scratch to advance | Conditional Instructions in C | #C
C notes from scratch to advance | Conditional Instructions in C | #C C is a programming language as we have discussed earlier about languages […]
Read moreC notes from scratch to advance | Instructions and operators in C | #C
C notes from scratch to advance | Instructions and operators in C | #C C is a programming language as we have discussed earlier about […]
Read moreC notes from scratch to advance | Variable , Constants and Keywords in C | #C
C notes from scratch to advance | Variable , Constants and Keywords in C | #C Variables A variable is a container which stores a […]
Read more
Recent Comments