Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #27.9K
Ranked #4K
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 7

6 Posted Topics

Member Avatar for ben1996123

You may want to prompt user to enter the numbers, they might get scared looking at the blank screen.

Member Avatar for PalashBansal96
0
299
Member Avatar for Kron

The whole code could be just ten statements. Your biggest mistake is at the "condition". [CODE] if(( variable >= '0') && (variable <= '9')) //Identifies if its a number between 0-9 //write something here else if ((variable >='a') &&(variable <='z'))//Identifies if its lower case letter //write something here //to check …

Member Avatar for limaulime
0
93
Member Avatar for Kron

Are you in programming class? because if you are, you need to go back and start reading your lecture notes. We can help with your problems but not doing the assignment for you.

Member Avatar for Narue
0
239
Member Avatar for Zssffssz

Ubuntu is good based on my personal experience and as you are using Code::Blocks on Windows it is good because Code::Blocks works well on Ubuntu too. If you have problems running Hello World program may be you need to run this [CODE]sudo apt-get install build-essential[/CODE]

Member Avatar for limaulime
0
227
Member Avatar for Zssffssz

First of all you need to define file stream [CODE]#include <fstream>[/CODE] Next you need to declare the file reference [CODE]ifstream infile ("filename.txt");//this is the name of the input file ofstream outfile ("filename2.txt"); //this is the name of output file[/CODE] then only you can read the data from input file and …

Member Avatar for limaulime
0
256
Member Avatar for amulgarg

statement 1: assign memory location for variable x, now variable x contains "garbage" value. statement 2: assign value to variable x which is 34.

Member Avatar for limaulime
0
101

The End.