How do I find the maximum and minimum element of a two dimensional array? Is my program correct?Thank you :D !
How do I find the maximum and minimum element of a two dimensional array? Is my program correct?int main () { int a [4][3]; int max,min; for (int i=0;i<4;i++) for (int j=0;j<3;j++) cin>>a[...
What are the basics of pointers (*) and (&)addresses ?I cant understand the concept of the ( & ) and ( * ) symbols in C++, what is the difference betw...
How to use ascii table to count letters ?Yes thank you ! Completely forgot about that. #include <iostream> #include<iomanip> using namespace...
How to use ascii table to count letters ?The question : Write a program that will initialize an array of charters to “do be do bo”. The ...
This user does not accept Private Messages