473,606 Members | 2,218 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Reading a file...

Hi all, I'm not a newbie with C, but I don't use it since more than 5 years...

I'm trying to read a text file which has doubles in it:

1.0 1.1 1.2 1.3 1.4
2.0 2.1 2.2 2.3 2.4
I'm doing this (it's only a test trying to achieve the goal...):

#include <stdio.h>
#include <stdlib.h>

int main () {
FILE* pFile;
long lSize;
double* buffer;

pFile = fopen ( "fichero_test.t xt" , "r" );
if (pFile==NULL) exit (1);

// obtain file size.
fseek (pFile , 0 , SEEK_END);
lSize = ftell (pFile);
rewind (pFile);

// allocate memory to contain the whole file.
buffer = (double*) malloc (lSize);
if (buffer == NULL) exit (2);

// copy the file into the buffer.
fread (buffer,1,lSize ,pFile);
printf("Pos 2 - %lf\n", buffer[2]);
printf("Pos 2 - %lf\n", buffer[sizeof(double)* 2]);

// terminate
fclose (pFile);
free (buffer);
return 0;
}

The output is:

Pos 2 - 0.000000
Pos 2 - 0.000000

What am I doing wrong?, Can I read the whole file into a buffer?

Mar 22 '06 #1
21 6370
EdUarDo wrote:
Hi all, I'm not a newbie with C, but I don't use it since more than 5 years...
you have some severe misconceptions about how C i/o works. I recomend
you get yourself a good book (eg K&R) which will explain things
clearly.
I'm trying to read a text file which has doubles in it:

1.0 1.1 1.2 1.3 1.4
2.0 2.1 2.2 2.3 2.4
to be honest the simplest method is something like:-

void read_line (double dd [5], FILE *f)
{
if (fscanf(f, "%lf %lf %lf %lf %lf", &dd[0], &dd[1], &dd[2],
&dd[3], &dd[4)
!= 5)
{
exit (EXIT_FAILURE);
}
}

code is untested, uncompiled etc.
I'm doing this (it's only a test trying to achieve the goal...):

#include <stdio.h>
#include <stdlib.h>

int main () {
int main (void)

is better style
FILE* pFile;
long lSize;
double* buffer;

pFile = fopen ( "fichero_test.t xt" , "r" );
if (pFile==NULL) exit (1);
error checking, good!

// obtain file size.
fseek (pFile , 0 , SEEK_END);
lSize = ftell (pFile);
rewind (pFile);
I'm not certain this works on a text file...

// allocate memory to contain the whole file.
buffer = (double*) malloc (lSize);
don't cast malloc()
if (buffer == NULL) exit (2);

// copy the file into the buffer.
fread (buffer,1,lSize ,pFile);
printf("Pos 2 - %lf\n", buffer[2]);
so you've read about 40 characters into a buffer. Why do you expect to
find and doubles in the buffer? In ascii that's something like

31 2E 30 20 31 2E 31 etc.

(yes I know it doesn't have to be ascii but I thought this made the
point
better than '1' '.' '0' ' ' '1' '.' '1' etc. you disagree?)

You can't jsut stuff characters into a buffer and expect sane results.
printf("Pos 2 - %lf\n", buffer[sizeof(double)* 2]);
// terminate
fclose (pFile);
free (buffer);
return 0;
}

The output is:

Pos 2 - 0.000000
Pos 2 - 0.000000

What am I doing wrong?, Can I read the whole file into a buffer?


yes, but you have to convert from characters to double. The best
combination is fgets() to read a line followed by sscanf() to parse the
line.
Always check the return value of sscanf().

--
Nick Keighley

Mar 22 '06 #2
> you have some severe misconceptions about how C i/o works. I recomend
you get yourself a good book (eg K&R) which will explain things
clearly.
Sure, now I'm used to other languages and indeed I don't remember anything about C I/O
1.0 1.1 1.2 1.3 1.4
2.0 2.1 2.2 2.3 2.4

void read_line (double dd [5], FILE *f)
{
if (fscanf(f, "%lf %lf %lf %lf %lf", &dd[0], &dd[1], &dd[2],
&dd[3], &dd[4)
!= 5)
{
exit (EXIT_FAILURE);
}
}


Well, it doesn't works for me because the real file could have 5, 6 or 1000 items per line.
// obtain file size.
fseek (pFile , 0 , SEEK_END);
lSize = ftell (pFile);
rewind (pFile);

I'm not certain this works on a text file...


It does...


// allocate memory to contain the whole file.
buffer = (double*) malloc (lSize);

don't cast malloc()


ok
You can't jsut stuff characters into a buffer and expect sane results.
Yeah, I guess that, but I wasn't sure of it, that's the reason I've asked for help....
yes, but you have to convert from characters to double. The best
combination is fgets() to read a line followed by sscanf() to parse the
line.
I suppose there isn't a readLine function, so I'll need to read until I reach a '\n' character, isn't it?
Always check the return value of sscanf().


Mar 22 '06 #3
EdUarDo wrote:
Hi all, I'm not a newbie with C, but I don't use it since more than 5
years...
I'm trying to read a text file which has doubles in it:

1.0 1.1 1.2 1.3 1.4
2.0 2.1 2.2 2.3 2.4
I'm doing this (it's only a test trying to achieve the goal...):

#include <stdio.h>
#include <stdlib.h>

int main () {
FILE* pFile;
long lSize;
double* buffer;

pFile = fopen ( "fichero_test.t xt" , "r" );
if (pFile==NULL) exit (1);

// obtain file size.
fseek (pFile , 0 , SEEK_END);
lSize = ftell (pFile);
rewind (pFile);

// allocate memory to contain the whole file.
buffer = (double*) malloc (lSize);
if (buffer == NULL) exit (2);

// copy the file into the buffer.
fread (buffer,1,lSize ,pFile);
printf("Pos 2 - %lf\n", buffer[2]);
printf("Pos 2 - %lf\n", buffer[sizeof(double)* 2]);

// terminate
fclose (pFile);
free (buffer);
return 0;
}

The output is:

Pos 2 - 0.000000
Pos 2 - 0.000000

What am I doing wrong?, Can I read the whole file into a buffer?


Does this thread on 'c file reading' help?

http://groups.google.com/group/comp....41f9f1ba8ac3d9
--
==============
Not a pedant
==============
Mar 22 '06 #4
> Does this thread on 'c file reading' help?

Yes, thanks.
Mar 22 '06 #5
EdUarDo wrote:
Hi all, I'm not a newbie with C, but I don't use it since more than 5 years...

I'm trying to read a text file which has doubles in it:

1.0 1.1 1.2 1.3 1.4
2.0 2.1 2.2 2.3 2.4
I'm doing this (it's only a test trying to achieve the goal...):

#include <stdio.h>
#include <stdlib.h>
int main () { FILE* pFile;
long lSize;
double* buffer;

pFile = fopen ( "fichero_test.t xt" , "r" );
if (pFile==NULL) exit (1);


exit(EXIT_FAILU RE) or return EXIT_FAILURE might be more portable.
// obtain file size.
Same for the comment syntax.
fseek (pFile , 0 , SEEK_END);
lSize = ftell (pFile);
rewind (pFile);
I don't know how well this will work. Unless your file is very large,
why not calculate it's size by reading each byte till EOF?
// allocate memory to contain the whole file.
buffer = (double*) malloc (lSize);
The cast is unnecessary and might hide the failure to include stdlib.h,
which on some systems might result in the compiler using the wrong
value as the return from malloc().
if (buffer == NULL) exit (2);
See comment about exit().
// copy the file into the buffer.
fread (buffer,1,lSize ,pFile);
printf("Pos 2 - %lf\n", buffer[2]);
printf("Pos 2 - %lf\n", buffer[sizeof(double)* 2]);
Here's your problem. The values read from the file will be present as
characters in memory. But you supply a conversion specifier doubles.
You'll need to convert the values using possibly sscanf() or strtod()
and then display them.
What am I doing wrong?, Can I read the whole file into a buffer?


If you allocated the required memory, then yes, you can.

Mar 22 '06 #6
Since my last reply apparently got lost in the aether...

EdUarDo wrote:
Hi all, I'm not a newbie with C, but I don't use it since more than 5 years...

I'm trying to read a text file which has doubles in it:

1.0 1.1 1.2 1.3 1.4
2.0 2.1 2.2 2.3 2.4
I'm doing this (it's only a test trying to achieve the goal...):

#include <stdio.h>
#include <stdlib.h>

int main () {
FILE* pFile;
long lSize;
double* buffer;

pFile = fopen ( "fichero_test.t xt" , "r" );
if (pFile==NULL) exit (1);

// obtain file size.
fseek (pFile , 0 , SEEK_END);
lSize = ftell (pFile);
rewind (pFile);

// allocate memory to contain the whole file.
buffer = (double*) malloc (lSize);
Unless you're using a pre-C89 compiler (or C++), don't cast the result
of malloc. You don't need to, and doing so can mask an error if you
forget to include stdlib.h.
if (buffer == NULL) exit (2);

Okay, first problem: the size of the file does not correspond to the
number of double values represented in that file. You have 10 strings
representing double values taking up (at least) 40 bytes. So sizing
your buffer based on the number of bytes in the file isn't going to do
what you want.

You're better off by allocating a small buffer and extending it with
realloc() as you read from the file. Granted, storing the contents of
an entire file in memory isn't terribly scalable whether you allocate
the memory in one huge gulp or in smaller chunks, but at least this way
you'll be allocating the right amount.
// copy the file into the buffer.
fread (buffer,1,lSize ,pFile);
Second problem: fread() does not convert the text representation of a
double value ("1.23") to the equivalent value (1.23). Basically what
you're doing is interpreting the bytes for "1.0 1.1 1.2..." as a series
of doubles, which is going to give you gibberish.
printf("Pos 2 - %lf\n", buffer[2]);
printf("Pos 2 - %lf\n", buffer[sizeof(double)* 2]);

// terminate
fclose (pFile);
free (buffer);
return 0;
}

The output is:

Pos 2 - 0.000000
Pos 2 - 0.000000

What am I doing wrong?, Can I read the whole file into a buffer?


Here's how I'd write it (uncompiled, untested, all the usual caveats
apply):

#include <stdio.h>
#include <stdlib.h>

#define BASE 10
#define EXTENT 5

int main(void)
{
double *buffer = NULL;
file *pFile = NULL;
size_t curSize = BASE;
size_t index = 0;
int moreData = 1;

if ((pFile = fopen("fichero_ test.txt", "r")) == NULL)
{
fprintf(stderr, "Could not open fichero_test.tx t!\n");
return EXIT_FAILURE;
}

/*
* Allocate the buffer at its initial size.
*/
buffer = malloc(sizeof *buffer * curSize);
if (!buffer)
{
fprintf(stderr, "Could not allocate initial buffer!\n");
return EXIT_FAILURE;
}

while (moreData)
{
/*
* Extend the buffer as necessary.
*/
if (index == curSize)
{
double *tmp = realloc(buffer, sizeof *buffer * (curSize +
EXTENT));
if (tmp)
{
buffer = tmp;
curSize += EXTENT;
}
else
{
fprintf(stderr, "Could not extend buffer past %lu
bytes; exiting...\n", curSize);
free(buffer);
return EXIT_FAILURE;
}
}

/*
* To keep this example simple, we're going to assume
* that the input file is *always* well-formatted, and
* that we don't have to handle any malformed
* strings.
*/
if (fscanf(pFile, "%f", &buffer[index++]) == 0)
{
/*
* Previous read failed; either we hit
* EOF or there was an error. Either
* way we're going to break out of the loop.
*/
if (feof(pFile))
{
fprintf(stderr, "Hit end-of-file...exiting loop\n");
}
else
{
fprintf(stderr, "Error reading from file...exiting
loop\n");
}
moreData = 0;
}
}

fprintf(stdout, "Read %lu doubles from input file.\n", index+1);
fprintf(stdout, "buffer[%lu] = %f\n", index, buffer[index]);

free(buffer);
fclose(pFile);

return EXIT_SUCCESS;
}

Mar 22 '06 #7

"EdUarDo" <ed************ *****@NOSPAMgma il.com> wrote in message
news:48******** ****@individual .net...
Hi all, I'm not a newbie with C, but I don't use it since more than 5
years...

I'm trying to read a text file which has doubles in it:

1.0 1.1 1.2 1.3 1.4
2.0 2.1 2.2 2.3 2.4
I'm doing this (it's only a test trying to achieve the goal...):

#include <stdio.h>
#include <stdlib.h>

int main () {
FILE* pFile;
long lSize;
double* buffer;

pFile = fopen ( "fichero_test.t xt" , "r" );
if (pFile==NULL) exit (1);

// obtain file size.
fseek (pFile , 0 , SEEK_END);
lSize = ftell (pFile);
rewind (pFile);

// allocate memory to contain the whole file.
buffer = (double*) malloc (lSize); Don't cast malloc!

lSize is now set to the number of characters in the file.
What does this have to do with the number of values that represent real
numbers?
(Answer: nothing, other than a upper limit to the possible number of values)

if (buffer == NULL) exit (2);

// copy the file into the buffer.
fread (buffer,1,lSize ,pFile);
Why are yoiu using fread? fread is for reading binary data.
You have already stated that the file is text.
printf("Pos 2 - %lf\n", buffer[2]);
printf("Pos 2 - %lf\n", buffer[sizeof(double)* 2]);

// terminate
fclose (pFile);
free (buffer);
return 0;
}

The output is:

Pos 2 - 0.000000
Pos 2 - 0.000000

What am I doing wrong?, Can I read the whole file into a buffer?


If the number of values per line is not relevant and all you want to do is
just read all of the double values, you could just loop
forever using fscanf() until you get EOF. Your buffer is guaranteed
to be large enough (way too large, as a matter of fact).

A better way might be to start with a small buffer, read until it is
full, then realloc it by some increment, keeping track of the current size
and the current number of items reads.

--
Fred L. Kleinschmidt
Boeing Associate Technical Fellow
Technical Architect, Software Reuse Project

Mar 22 '06 #8
John Bode wrote:
Since my last reply apparently got lost in the aether...

EdUarDo wrote:
Hi all, I'm not a newbie with C, but I don't use it since more than 5 years...

I'm trying to read a text file which has doubles in it:

1.0 1.1 1.2 1.3 1.4
2.0 2.1 2.2 2.3 2.4

Here's how I'd write it (uncompiled, untested, all the usual caveats
apply):

#include <stdio.h>
#include <stdlib.h>

#define BASE 10
#define EXTENT 5

int main(void)
{
double *buffer = NULL;
file *pFile = NULL;
size_t curSize = BASE;
size_t index = 0;
int moreData = 1;

if ((pFile = fopen("fichero_ test.txt", "r")) == NULL)
{
fprintf(stderr, "Could not open fichero_test.tx t!\n");
return EXIT_FAILURE;
}

/*
* Allocate the buffer at its initial size.
*/
buffer = malloc(sizeof *buffer * curSize);
if (!buffer)
{
fprintf(stderr, "Could not allocate initial buffer!\n");
return EXIT_FAILURE;
}

while (moreData)
{
/*
* Extend the buffer as necessary.
*/
if (index == curSize)
{
double *tmp = realloc(buffer, sizeof *buffer * (curSize +
EXTENT));
if (tmp)
{
buffer = tmp;
curSize += EXTENT;
}
else
{
fprintf(stderr, "Could not extend buffer past %lu
bytes; exiting...\n", curSize);
free(buffer);
return EXIT_FAILURE;
}
}

/*
* To keep this example simple, we're going to assume
* that the input file is *always* well-formatted, and
* that we don't have to handle any malformed
* strings.
*/
if (fscanf(pFile, "%f", &buffer[index++]) == 0)
{
/*
* Previous read failed; either we hit
* EOF or there was an error. Either
* way we're going to break out of the loop.
*/
if (feof(pFile))
{
fprintf(stderr, "Hit end-of-file...exiting loop\n");
}
else
{
fprintf(stderr, "Error reading from file...exiting
loop\n");
}
moreData = 0;
}
}

fprintf(stdout, "Read %lu doubles from input file.\n", index+1);
fprintf(stdout, "buffer[%lu] = %f\n", index, buffer[index]);

free(buffer);
fclose(pFile);

return EXIT_SUCCESS;
}


D:\Files\src\C\ tmp\fischero>gc c -Wall -ansi -pedantic -o fichero.exe
fichero.c
fichero.c: In function `main':
fichero.c:47: warning: long unsigned int format, size_t arg (arg 3)
fichero.c:59: warning: float format, double arg (arg 3)
fichero.c:78: warning: long unsigned int format, size_t arg (arg 3)
fichero.c:79: warning: long unsigned int format, size_t arg (arg 3)

Running the output, fichero.exe just hangs with 100% CPU usage, until
it's killed with CTRL-C.

Mar 22 '06 #9
John Bode wrote:
Since my last reply apparently got lost in the aether...
Here's how I'd write it (uncompiled, untested, all the usual caveats
apply):

#include <stdio.h>
#include <stdlib.h>

#define BASE 10
#define EXTENT 5

int main(void)
{
double *buffer = NULL;
file *pFile = NULL;
size_t curSize = BASE;
size_t index = 0;
int moreData = 1;

if ((pFile = fopen("fichero_ test.txt", "r")) == NULL)
{
fprintf(stderr, "Could not open fichero_test.tx t!\n");
return EXIT_FAILURE;
}

/*
* Allocate the buffer at its initial size.
*/
buffer = malloc(sizeof *buffer * curSize);
if (!buffer)
{
fprintf(stderr, "Could not allocate initial buffer!\n");
return EXIT_FAILURE;
}

while (moreData)
{
/*
* Extend the buffer as necessary.
*/
if (index == curSize)
{
double *tmp = realloc(buffer, sizeof *buffer * (curSize +
EXTENT));
if (tmp)
{
buffer = tmp;
curSize += EXTENT;
}
else
{
fprintf(stderr, "Could not extend buffer past %lu
bytes; exiting...\n", curSize);
free(buffer);
return EXIT_FAILURE;
}
}

/*
* To keep this example simple, we're going to assume
* that the input file is *always* well-formatted, and
* that we don't have to handle any malformed
* strings.
*/
if (fscanf(pFile, "%f", &buffer[index++]) == 0)
What if EOF is returned? Better to store the return value into a
temporary and check against both zero and EOF. I did that and it fixed
the infinite loop hang mentioned in the previous post.
{
/*
* Previous read failed; either we hit
* EOF or there was an error. Either
* way we're going to break out of the loop.
*/
if (feof(pFile))
{
fprintf(stderr, "Hit end-of-file...exiting loop\n");
}
else
{
fprintf(stderr, "Error reading from file...exiting
loop\n");
}
moreData = 0;
}
}

fprintf(stdout, "Read %lu doubles from input file.\n", index+1);
fprintf(stdout, "buffer[%lu] = %f\n", index, buffer[index]);


Both these fprintf() statements print the wrong values, even if an
empty file is given.
I think the problem lies in the use of the variable 'index'.

Mar 22 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
3052
by: Xah Lee | last post by:
# -*- coding: utf-8 -*- # Python # to open a file and write to file # do f=open('xfile.txt','w') # this creates a file "object" and name it f. # the second argument of open can be
1
7041
by: fabrice | last post by:
Hello, I've got trouble reading a text file (event viewer dump) by using the getline() function... After 200 - 300 lines that are read correctly, it suddenly stops reading the rest of the file... Thank you to all of you who can help me with this one...
19
10295
by: Lionel B | last post by:
Greetings, I need to read (unformatted text) from stdin up to EOF into a char buffer; of course I cannot allocate my buffer until I know how much text is available, and I do not know how much text is available until I have read it... which seems to imply that multiple reads of the input stream will be inevitable. Now I can correctly find the number of characters available by: |
4
9818
by: Oliver Knoll | last post by:
According to my ANSI book, tmpfile() creates a file with wb+ mode (that is just writing, right?). How would one reopen it for reading? I got the following (which works): FILE *tmpFile = tmpfile(); /* write into tmpFile */ ...
6
6336
by: Rajorshi Biswas | last post by:
Hi folks, Suppose I have a large (1 GB) text file which I want to read in reverse. The number of characters I want to read at a time is insignificant. I'm confused as to how best to do it. Upon browsing through this group and other sources on the web, it seems that there are many ways to do it. Some suggest that simply fseek'ing to 8K bytes before the end of file, and going backwards is the way. In this case, am I guaranteed best results...
1
2010
by: Need Helps | last post by:
Hello. I'm writing an application that writes to a file a month, day, year, number of comments, then some strings for the comments. So the format for each record would look like: mdyn"comment~""comment~"\n Now, I wrote some code to read these records, and it works perfectly for every date I've tried it on, except when the day is 26. I tried saving a record for 6/26/2004 and 7/26/2004 and it read it in as the day, year, and number of...
7
6052
by: John Dann | last post by:
I'm trying to read some binary data from a file created by another program. I know the binary file format but can't change or control the format. The binary data is organised such that it should populate a series of structures of specified variable composition. I have the structures created OK, but actually reading the files is giving me an error. Can I ask a simple question to start with: I'm trying to read the file using the...
5
14977
blazedaces
by: blazedaces | last post by:
Ok, so you know my problem, java is running out of memory reading with SAX, the event-based xml parser intended more-so than DOM for extremely large files. I'll try to explain what I've been doing and why I have to do it. Hopefully someone has a suggestion... Alright, so I'm using a gps-simulation program that outputs gps data, like longitude, lattitude, altitude, etc. (hundreds of terms, these are just the well known ones). In the newer...
6
3520
by: efrenba | last post by:
Hi, I came from delphi world and now I'm doing my first steps in C++. I'm using C++builder because its ide is like delphi although I'm trying to avoid the vcl. I need to insert new features to an old program that I wrote in delphi and it's a good opportunity to start with c++.
2
2832
by: Derik | last post by:
I've got a XML file I read using a file_get_contents and turn into a simpleXML node every time index.php loads. I suspect this is causing a noticeable lag in my page-execution time. (Or the wireless where I'm working could just be ungodly slow-- which it is.) Is reading a file much more resource/processor intensive than, say, including a .php file? What about the act of creating a simpleXML object? What about the act of checking the...
0
7951
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8094
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6770
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5966
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5465
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3930
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
3977
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2448
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1296
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.