All the shown programs and many others are also available in the Printed form. You can also avail the same by paying a small amount of I...
Example of 2D Array Row, Column and Diagonal Sum in C++
#include <iostream.h> #include <conio.h> void getdata(int a[][3]) { int i,j; for(i=0;i<3;i++) { for(j=...
Count the word which ends with 's' character in C++ using file handling
#include <conio.h> #include <fstream.h> void couts(char c[]) { int i=0; int cnt=0; while(c[i+1]!='\0...
Convert the Lower Case to Upper and Upper to Lower Case in C++
#include <iostream.h> #include <conio.h> #include <string.h> #include <ctype.h> void main () { char c...
String Reverse Using Pointer
#include <iostream.h> #include <conio.h> #include <string.h> void StrRev(char *p) { char *q; int len=strlen...
Subscribe to:
Posts
(
Atom
)