No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
Re: You may want to prompt user to enter the numbers, they might get scared looking at the blank screen. | |
Re: 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 … | |
Re: 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. | |
Re: 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] | |
Re: 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 … | |
Re: statement 1: assign memory location for variable x, now variable x contains "garbage" value. statement 2: assign value to variable x which is 34. |
The End.