now i don't know how to answer this question:
write a programme that prompt the user to enter a string and output the string in uppercase letters.(use a character array to store the string)
can anybody help me?
haha...
i get it already!
thanks for everybody.
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
int a[5], i;
float b[4];
char c[3];
cout<<"please enter a integer"<<endl;
for (i=0; i<8; i++){
cin>>a[i];
}
cout<<"\n 5 integer are: ";
for...
the question:
write prgramme that will ask user to enter 5 integer numbers, 4 float numbers and 3 characters. then store them in arrays.
output:
5 integers numbers are?
4 float numbers are?
3 characters are?