Forum: C Jun 3rd, 2007 |
| Replies: 2 Views: 928 I am using Bloodshed C++ for my development. I have compiled the Dos console program in C and its working fine. But i want to add a icon to it instead of the windows application icon. Hope someone... |
Forum: C Jan 2nd, 2007 |
| Replies: 13 Views: 1,818 It worked!!!!
I changed the ascii value to decimal by subtracting 48 from each element in filtered array.
My first miniproject in C is almost complete..
I will post the final code and... |
Forum: C Jan 2nd, 2007 |
| Replies: 13 Views: 1,818 Thank You very much Ancient Dragon. That was more than a help for me...
I knew I was using the ascii code instead of decimal value but I totally forgot it during the computation. I will reply... |
Forum: C Jan 2nd, 2007 |
| Replies: 13 Views: 1,818 Thank you Salem.
I have changed
int db[9][9][9] to int db[10][10][10]
and
for(i=0;i<=100;i++) to for(i=0;i<=99;i++). |
Forum: C Jan 2nd, 2007 |
| Replies: 13 Views: 1,818 here is the code.. so that you could correct....
this is a program to find time zone from area code...
#include <stdio.h>
#include <stdlib.h>
void db_init(void);/*function to initialise... |
Forum: C Jan 1st, 2007 |
| Replies: 13 Views: 1,818 I am sorry. I should have done that first..
int db[9][9][9];
the maximum value is 7789 and the minimum value is 3278. |
Forum: C Jan 1st, 2007 |
| Replies: 13 Views: 1,818 I am writing a C program using Dev-CPP. It uses a 3 dimensional array to store around 350 values as shown below.
db[2][0][1]=3278;
db[2][0][4]=2368;
db[3][0][3]=6686;
db[2][0][6]=7224;
..... |