The ProgrammersTalk Community
Forum Register Search Today's Posts Mark Forums Read
Register

Go Back   The ProgrammersTalk Community > General Programming > C / C++


Welcome to the The ProgrammersTalk Community forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.
Reply
 
LinkBack Thread Tools    Display Modes   
  #1 (permalink)  
Old 04-26-2008, 07:38 AM
kckc314 kckc314 is offline
Novice
Join Date: Apr 2008
Posts: 14
iTrader: (0)
kckc314 is on a distinguished road
read data from a file

when reading data from the attached file, apart from the four corner which only associated with #s, how to only grap the data inside the 4 #s border, which are numbers 0-9 and some #s in the middle and store them into 2d array? i only want to store the numbers and the #s between the numbers inside. there is a space in between numbers and #s. there are some spaces, new line character at top, bottom, left and right of the square. below are the codes that i implemented but kind of stuck in some way as may need your help to carry on.
Code:
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>

#define row 12      /* Number of rows on square */
#define col 12      /* Number of columns on square */

int square[row][col];
int i = 0, j = 0, ch;

int main(int argc, char *argv[]) {
    
    while ((ch = getchar()) != EOF) {
          if (ch >= 0 || ch <= 9) {
             for (i = row; i >= 1; i--) {
                 for (j = ch; j <= 23; j++) {
thanks in advance.
Attached Files
File Type: txt test.txt (516 Bytes, 1 views)

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #2 (permalink)  
Old 04-26-2008, 11:57 PM
kckc314 kckc314 is offline
Novice
Join Date: Apr 2008
Posts: 14
iTrader: (0)
kckc314 is on a distinguished road
hi can i have some feedbacks?

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #3 (permalink)  
Old 05-22-2008, 05:26 AM
sameera sameera is offline
Novice
Join Date: Dec 2007
Location: Sri Lanka
Posts: 5
iTrader: (0)
sameera is on a distinguished road
Icon2

I can't understand what you want correctly.But i noticed a bug in your code
getchar() returns a char value but you are trying to store it in a int variable.
I you can explain more the problem I think i can help you


Thanks

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

   Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 04:39 PM. Powered by vBulletin
Copyright © 2000 - 2007, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO © 2007 ProgrammersTalk Sedo - Buy and Sell Domain Names and Websites project info: programmerstalk.net Statistics for project programmerstalk.net etracker® web controlling instead of log file analysis


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50