473,320 Members | 1,936 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

First C program

Hi Guys,

This is my first C program. I started programming in Python. Please look
over this source and let me know if I'm doing anything wrong. I want to
start out right with C, so if you see anything wrong tell me now while I
am learning!

Thanks !!!
#include <stdio.h>

int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of our IP range */

FILE *outputFile; /* Declare the file in which we will write the IP range to */

int main() /* This is the correct way to declare main... do not use void main() */
{

octet0 = 192; /* Value of first octet */
octet1 = 168; /* Value of second octet */
octet2 = 1; /* Value of third octet */

outputFile = fopen("ips_c.txt", "wt"); /* Create a text file, open it in write mode */
for (octet3 = 1; octet3 < 255; ++octet3) {
/* printf ("%d.%d.%d.%d\n", octet0, octet1, octet2, octet3); */
fprintf (outputFile, "%d.%d.%d.%d\n", octet0, octet1, octet2, octet3);
}
fclose(outputFile);
printf ("\nThe file 'ips_c.txt' was generated successfully...\n\n");
return(0);
}


Nov 13 '05 #1
27 3099
"hokiegal99" <ho********@hotmail.com> wrote in message
news:3F**************@hotmail.com...
Hi Guys,

This is my first C program. I started programming in Python. Please look
over this source and let me know if I'm doing anything wrong. I want to
start out right with C, so if you see anything wrong tell me now while I
am learning!
Thou hast already committed thy first sin, my son. :-)

The first C program one should write is the classic
"Hello world".

But let's take a look.

First, if you share code here, if at all possible post
*compilable* code. Of course the fastest way for anyone
to spot any syntax errors is to paste your code into a
compiler and compile it. This I did, but first I had
to spend time deleting all those > characters. Actually,
their presence makes me suspect you copied that out of
a newsgroup post or email message.

Also, learn to indent your code. What does the example
code in your textbook look like? Is it all left aligned
like that? Which textbook(s) are you reading?


Thanks !!!
#include <stdio.h>

int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of our IP range */

1. Those comments are worse than useless. They only clutter
the code and give no additional information. The identifier
names you're using (which are pretty good ones btw) already
convey the information in the comments (except the 'IP' part)

If I commented this part at all, I'd write something like:

/* IP address octets */
int octet0;
int octet1;
int octet2;
int octet3;

Actually I'd put these values in an array, but you're probably
not that far with the language yet.

2. There's no reason to put these at file scope. They should
go inside your 'main()' function, where they're used.

FILE *outputFile; /* Declare the file in which we will write the IP range to */

Another useless comment. Your (again good) identifier name
'outputFile' tells the story : it's an output file. If you
want to convey that the file will contain 'IP addresses',
perhaps a name like 'IPFileOut' or similar might be closer.

This object should also be defined inside your 'main()'
function, not here.

int main() /* This is the correct way to declare main... do not use void main() */

Correct. Though preferred would be

int main(void)

{

octet0 = 192; /* Value of first octet */
octet1 = 168; /* Value of second octet */
octet2 = 1; /* Value of third octet */
More useless comments.

Also, these values could be specified at definition time
with initializers (these definitions should be inside
this function anyway):

int octet0 = 192;
int octet1 = 168;
int octet2 = 1;
int octet3 = 0;
/* technically initialization of 'octet3' is not necessary,
since you assign it a value below before using it. But
I find that *always* initializing *every* object with
*some* valid value is a good defensive practice. If
you don't give an initial value, and forget to do so
before trying to access it, you get 'undefined behavior.'
Not Good(tm) */

outputFile = fopen("ips_c.txt", "wt"); /* Create a text file, open it in write mode */

There's no standard 'open mode' of "wt". C streams are
'text mode' by default, unless otherwise specified.
Just use "w".

Also, very important is that you check that the call to
'fopen()' succeeded before trying to touch the file.
If 'fopen()' failed, any attempts at i/o result in,
you guessed it, undefined behavior. :-)

if(outputFile == NULL)
{
puts("Cannot open input");
return EXIT_FAILURE; /* 'EXIT_FAILURE' needs #include <stdlib.h>
}

} for (octet3 = 1; octet3 < 255; ++octet3) {
This will iterate for values of 'octet3' of 1 through
254 inclusive. If you want to include 255, change the
< to <= or compare against 256 with <. I also see you
start with 1 and not zero. This range of values may be
what you want, I don't know. Just drawing attention to
it just in case.
/* printf ("%d.%d.%d.%d\n", octet0, octet1, octet2, octet3); */
fprintf (outputFile, "%d.%d.%d.%d\n", octet0, octet1, octet2, octet3);

You need to check that 'fprintf()' succeeded here.
See your compiler manual or textbook to find out how.
}
fclose(outputFile);
printf ("\nThe file 'ips_c.txt' was generated successfully...\n\n");
return(0);
Nitpick: This is valid, but the parentheses are not
needed. 'return' is not a function, it's a keyword.
}


All in all, not bad. But again, you first should have
written the "Hello world" program. Now go forth and
sin no more. :-)

-Mike
Nov 13 '05 #2
Mac
On Tue, 30 Sep 2003 16:25:14 +0000, hokiegal99 wrote:
Hi Guys,

This is my first C program. I started programming in Python. Please look
over this source and let me know if I'm doing anything wrong. I want to
start out right with C, so if you see anything wrong tell me now while I
am learning!

Thanks !!!
#include <stdio.h>

int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of our IP range */

FILE *outputFile; /* Declare the file in which we will write the IP range to */

int main() /* This is the correct way to declare main... do not use void main() */
{

octet0 = 192; /* Value of first octet */
octet1 = 168; /* Value of second octet */
octet2 = 1; /* Value of third octet */

outputFile = fopen("ips_c.txt", "wt"); /* Create a text file, open it in write mode */
for (octet3 = 1; octet3 < 255; ++octet3) {
/* printf ("%d.%d.%d.%d\n", octet0, octet1, octet2, octet3); */
fprintf (outputFile, "%d.%d.%d.%d\n", octet0, octet1, octet2, octet3);
}
fclose(outputFile);
printf ("\nThe file 'ips_c.txt' was generated successfully...\n\n");
return(0);
}
>


Mike Wahler already critiqued the code. I'll just add that fclose()
returns a value, so if you are going to claim that you successfully wrote
the file, you should probably check the return value of fclose().

Mac
--
Nov 13 '05 #3
hokiegal99 wrote:
Hi Guys,

This is my first C program. I started programming in Python. Please look
over this source and let me know if I'm doing anything wrong. I want to
start out right with C, so if you see anything wrong tell me now while I
am learning!

Thanks !!!
#include <stdio.h>

int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of
our IP range */

FILE *outputFile; /* Declare the file in which we will write the IP
range to */

int main() /* This is the correct way to declare main... do not
use void main() */
{

octet0 = 192; /* Value of first octet */
octet1 = 168; /* Value of second octet */
octet2 = 1; /* Value of third octet */

outputFile = fopen("ips_c.txt", "wt"); /* Create a text file,
open it in write mode */
for (octet3 = 1; octet3 < 255; ++octet3) {
/* printf ("%d.%d.%d.%d\n", octet0, octet1, octet2, octet3); */
fprintf (outputFile, "%d.%d.%d.%d\n", octet0, octet1, octet2,
octet3);
}
fclose(outputFile);
printf ("\nThe file 'ips_c.txt' was generated successfully...\n\n");
return(0);
}


Nice work for a C newbie. The only "error" I can see is not checking
that fopen has worked before writing to your file -- oh, and giving
a mode of "wt" rather than "w" to fopen(). And maybe getting the range
of your "for" loop off-by-one.

As you might expect, though, this is not very idiomatic C. Here's
a "translation" of your code that sticks close to the orginal in
spirit, but that is more idiomatic:

#include <stdio.h>
#include <stdlib.h> /* for exit statuses */

int main (void)
{
const char *outfile = "ips_c.txt";
FILE *fp; /* it's not usually necessary to give very descriptive
names to streams -- it's generally pretty clear from
context what they're for.
*/
int ip_octet[4];
int i;

ip_octet[0] = 192;
ip_octet[1] = 168;
ip_octet[2] = 1;

fp = fopen(outfile, "w");
if (fp == NULL) {
fprintf(stderr, "Failed to open '%s' for writing\n", outfile);
exit(EXIT_FAILURE);
}

for (i=0; i<255; i++) {
ip_octet[3] = i + 1;
fprintf(fp, "%d.%d.%d.%d\n", ip_octet[0], ip_octet[1],
ip_octet[2], ip_octet[3]);
}

fclose(fp);

printf("The file '%s' was was generated successfully\n",
outfile);

return 0;
}
--
Allin Cottrell
Department of Economics
Wake Forest University, NC

Nov 13 '05 #4
hokiegal99 wrote:
Hi Guys,

This is my first C program. I started programming in Python. Please look
over this source and let me know if I'm doing anything wrong. I want to
start out right with C, so if you see anything wrong tell me now while I
am learning!

Thanks !!!
#include <stdio.h>

int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of
our IP range */

FILE *outputFile; /* Declare the file in which we will write the IP
range to */

int main() /* This is the correct way to declare main... do not
use void main() */
{

octet0 = 192; /* Value of first octet */
octet1 = 168; /* Value of second octet */
octet2 = 1; /* Value of third octet */

outputFile = fopen("ips_c.txt", "wt"); /* Create a text file,
open it in write mode */
for (octet3 = 1; octet3 < 255; ++octet3) {
/* printf ("%d.%d.%d.%d\n", octet0, octet1, octet2, octet3); */
fprintf (outputFile, "%d.%d.%d.%d\n", octet0, octet1, octet2,
octet3);
}
fclose(outputFile);
printf ("\nThe file 'ips_c.txt' was generated successfully...\n\n");
return(0);
}


The objective of your program is to print the string representation of dotted
decimal IP addresses in a particular network. You have the right idea, but you
are being a bit overzealous. How about this...

#include <stdio.h>

int
main(void)
{
int host;

for(host=1; host < 256; ++host)
printf("192.168.1.%d\n", host);
return 0;
}

Invoke as

./a.out > ips_c.txt

or embed the file I/O in the program as before.

/david

--
FORTRAN was the language of choice
for the same reason that three-legged races are popular.
-- Ken Thompson, "Reflections on Trusting Trust"

Nov 13 '05 #5
"Mac" <fo*@bar.net> wrote in message
news:pa****************************@bar.net...
Mike Wahler already critiqued the code. I'll just add that fclose()
returns a value, so if you are going to claim that you successfully wrote
the file, you should probably check the return value of fclose().


I always forget something. :-) Thanks.

-Mike
Nov 13 '05 #6
Mike Wahler wrote:
"hokiegal99" <ho********@hotmail.com> wrote in message
news:3F**************@hotmail.com...

#include <stdio.h>

int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of our IP


range */


Something I would add on this level is that using an unsigned char
instead of int might be prudent in many cases like the above. You have
already declaired that they are "octets" which by definition are single
bytes (on any modern day computer) so you could just use bytes. Don't
use simply "char" because it is compiler specific whether or not "char"
is signed, so make sure by calling it unsigned explicitly.

You could also get fancy and pad a known 4 byte integer; in reality this
is what an IP address is. At the level of this program though that is
undue complexity and overhead.

NR

Nov 13 '05 #7
hokiegal99 <ho********@hotmail.com> wrote:
This is my first C program. I started programming in Python. Please look


<snip>
int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of our IP range */


toss the globals. They make for confusing code in the end. Learn to use
structs. a convenient way to do it is:

typedef struct _foo_t {
int bar;
char *baz;
struct _foo *recursive;
} foo_t;

The _t at the end quickly identifies it as a datatype, and emacs will
highlight it as a datatype for you; I'm an emacs user so that makes things
nice for me. If you *must* have globals for things like handling signals
then you can always access them like so:

int access_foo(int new, int do_set){
static int foo = 0;
if(do_set){
foo = new;
return 0;
} /* end of if */
else {
return foo;
} /* end of else */
} /* end int access_foo(...) *?

Effectively you are using globals, but the wrapper allows you to later on
do whatever you want, perhaps look it up in a database or something.
As someone who's had to debug 22,000 lines of spaghetti code w/ globals-
galore, written by 4 different physicists over 15 years, I know the dangers
of using globals. Don't make the same mistake.

Also, my personal style is to create a foo.h for every foo.c

I put everything that the rest of the world would ever want to know about
foo.c in foo.h, which does *not* include many #defines, or *any*
static function declarations; o yeah, any function that does not need to
be used by another .c file should be declared static so as not to clutter
the namespace. If you look around in large c programs you see enormous
function names because ansi c does not support namespaces.

Most c coders also use names separated by _'s instead of mixing the
capitalization, at about 6 in the morning when you're brain is incapable
of inserting the space you'll begin to appreciate that tactic.

kudos to you for playing w/ c by the way.

--
Harrison Caudill | .^ www.hypersphere.org
Computer Science & Physics Double Major | | Me*Me=1
Georgia Institute of Technology | '/ I'm just a normal guy
Nov 13 '05 #8
On Mon, 29 Sep 2003 20:07:41 -0700, "Mac" <fo*@bar.net> wrote:
On Tue, 30 Sep 2003 16:25:14 +0000, hokiegal99 wrote:
Hi Guys,

This is my first C program. I started programming in Python. Please look
over this source and let me know if I'm doing anything wrong. I want to
start out right with C, so if you see anything wrong tell me now while I
am learning!

Thanks !!!
#include <stdio.h>

int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of our IP range */

FILE *outputFile; /* Declare the file in which we will write the IP range to */

int main() /* This is the correct way to declare main... do not use void main() */
{

octet0 = 192; /* Value of first octet */
octet1 = 168; /* Value of second octet */
octet2 = 1; /* Value of third octet */

outputFile = fopen("ips_c.txt", "wt"); /* Create a text file, open it in write mode */
for (octet3 = 1; octet3 < 255; ++octet3) {
/* printf ("%d.%d.%d.%d\n", octet0, octet1, octet2, octet3); */
fprintf (outputFile, "%d.%d.%d.%d\n", octet0, octet1, octet2, octet3);
}
fclose(outputFile);
printf ("\nThe file 'ips_c.txt' was generated successfully...\n\n");
return(0);
}
>


Mike Wahler already critiqued the code. I'll just add that fclose()
returns a value, so if you are going to claim that you successfully wrote
the file, you should probably check the return value of fclose().


For that matter, there could also be an error during fprintf().

Nick.
Nov 13 '05 #9
Nick Austin <ni**********@nildram.co.uk> wrote:
On Mon, 29 Sep 2003 20:07:41 -0700, "Mac" <fo*@bar.net> wrote:
On Tue, 30 Sep 2003 16:25:14 +0000, hokiegal99 wrote: <SNIP>
outputFile = fopen("ips_c.txt", "wt"); /* Create a text file, open it in write mode */
for (octet3 = 1; octet3 < 255; ++octet3) {
/* printf ("%d.%d.%d.%d\n", octet0, octet1, octet2, octet3); */
fprintf (outputFile, "%d.%d.%d.%d\n", octet0, octet1, octet2, octet3);
}
fclose(outputFile);
printf ("\nThe file 'ips_c.txt' was generated successfully...\n\n");
return(0);
}
>


Mike Wahler already critiqued the code. I'll just add that fclose()
returns a value, so if you are going to claim that you successfully wrote
the file, you should probably check the return value of fclose().


For that matter, there could also be an error during fprintf().

.... as Mike already pointed out in his first reply.

Irrwahn
--
Great minds run in great circles.
Nov 13 '05 #10

"Charles Harrison Caudill" <ku*****@myrna.cc.gatech.edu> schrieb im
Newsbeitrag news:bl**********@solaria.cc.gatech.edu...
hokiegal99 <ho********@hotmail.com> wrote:
This is my first C program. I started programming in Python. Please look
<snip>
int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of our IP

range */
toss the globals. They make for confusing code in the end. Learn to use
structs. a convenient way to do it is:

typedef struct _foo_t {
int bar;
char *baz;
struct _foo *recursive;
} foo_t;

The _t at the end quickly identifies it as a datatype, and emacs will
highlight it as a datatype for you; I'm an emacs user so that makes things
nice for me. If you *must* have globals for things like handling signals
then you can always access them like so:

int access_foo(int new, int do_set){
static int foo = 0;
if(do_set){
foo = new;
return 0;
} /* end of if */
else {
return foo;
} /* end of else */
} /* end int access_foo(...) *?


Hey, thanks for the idea :)
Very handy in code, where globals cannot be avoided (<OT>A DLL for example,
with a bunch of functions isolated from each other, but using the same
variables, and no, I don't like the idea to manage them in the calling VB
application </OT>)

Robert
Nov 13 '05 #11
Mike Wahler wrote:
First, if you share code here, if at all possible post
*compilable* code. Of course the fastest way for anyone
to spot any syntax errors is to paste your code into a
compiler and compile it. This I did, but first I had
to spend time deleting all those > characters. Actually,
their presence makes me suspect you copied that out of
a newsgroup post or email message.
Thanks, my mailer Mozilla Mail would not let me paste the source into
the body of the email unless I pasted it as a quotation. I'm soryy...
I'll remove all the '>' in the future. BTY, I wrote this myself from a
Python script that I wrote. I thought it would be a good way to start
out... converting Python scripts to C programs.

Also, learn to indent your code. What does the example
code in your textbook look like? Is it all left aligned
like that? Which textbook(s) are you reading?


Practical C Programming, 3rd Edition
by Steve Oualline
int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of our IP
range */

1. Those comments are worse than useless. They only clutter
the code and give no additional information. The identifier
names you're using (which are pretty good ones btw) already
convey the information in the comments (except the 'IP' part)


The author of my book wants everything commented. I guess it's a matter
of style, but I can see your point. Good names go a long way toward
being a comment. Thanks for the tip.

int main() /* This is the correct way to declare main... do not use void


main() */

Correct. Though preferred would be

int main(void)


I do not understand this. Why is this preferred over int main()?

Thanks for all the tips!!!

Nov 13 '05 #12
Allin Cottrell wrote:
As you might expect, though, this is not very idiomatic C. Here's
a "translation" of your code that sticks close to the orginal in
spirit, but that is more idiomatic:
Thank you for the example. My programming background is limited to
systems administration (Python, Perl, Bash) so my idea of programming is
limited and probably somewhat pragmatic. C will be a learning experience
for me. Thanks again!!!

#include <stdio.h>
#include <stdlib.h> /* for exit statuses */

int main (void)
{
const char *outfile = "ips_c.txt";
FILE *fp; /* it's not usually necessary to give very descriptive
names to streams -- it's generally pretty clear from
context what they're for.
*/
int ip_octet[4];
int i;

ip_octet[0] = 192;
ip_octet[1] = 168;
ip_octet[2] = 1;

fp = fopen(outfile, "w");
if (fp == NULL) {
fprintf(stderr, "Failed to open '%s' for writing\n", outfile);
exit(EXIT_FAILURE);
}

for (i=0; i<255; i++) {
ip_octet[3] = i + 1;
fprintf(fp, "%d.%d.%d.%d\n", ip_octet[0], ip_octet[1],
ip_octet[2], ip_octet[3]);
}

fclose(fp);

printf("The file '%s' was was generated successfully\n",
outfile);

return 0;
}


Nov 13 '05 #13
On Tue, 30 Sep 2003 08:23:52 -0400, hokieghal99 wrote:
The author of my book wants everything commented. I guess it's a matter
of style, but I can see your point. Good names go a long way toward
being a comment. Thanks for the tip.


Comments in code in a programming textbook are meant to be read by people
that doesn't know the language (yet). Comments in ordinary code is
supposed to be read by people that know the language (and so won't need an
explanation for most of the code). So instead of commenting everything you
should only comment the important bits, so that they are not lost among
all the other comments.
regards

--
NPV
"Linux is to Lego as Windows is to Fisher Price." - Doctor J Frink

Nov 13 '05 #14
Nils Petter Vaskinn wrote:
On Tue, 30 Sep 2003 08:23:52 -0400, hokieghal99 wrote:

The author of my book wants everything commented. I guess it's a matter
of style, but I can see your point. Good names go a long way toward
being a comment. Thanks for the tip.

Comments in code in a programming textbook are meant to be read by people
that doesn't know the language (yet). Comments in ordinary code is
supposed to be read by people that know the language (and so won't need an
explanation for most of the code). So instead of commenting everything you
should only comment the important bits, so that they are not lost among
all the other comments.


Usually you can comment a short description of what the stuff in this
file is for, a comment header over functions to describe input and
expected output, and comment areas of code that are particularly
obfuscated. You may also wish to comment use of globals for instance
something like:

global_x = new_value; /* global_x is defined in globals.c */

You don't need much more than these things and sometimes even they are
unnecissary. What you don't want is code without comments, so find a
balance that maintains code readibility but not more.

NR

Nov 13 '05 #15
Something I just discovered. I can declare a variable and initialize it
at the same time... this is a big time/line saver. Is this inappropiate?

int octet0 = 192;
int octet1 = 168;
int octet2 = 1;
int octet3 = 1;

Nov 13 '05 #16

"Nick Austin" <ni**********@nildram.co.uk> wrote in message
news:8g********************************@4ax.com...
On Mon, 29 Sep 2003 20:07:41 -0700, "Mac" <fo*@bar.net> wrote:
For that matter, there could also be an error during fprintf().


I made a comment about that in my original reply.
I left 'how to do it' for him to research on his own.

-Mike
Nov 13 '05 #17

"hokieghal99" <ho********@hotmail.com> wrote in message
news:bl**********@solaris.cc.vt.edu...
Something I just discovered.
I showed you that in my first reply.

I can declare a variable and initialize it
at the same time... this is a big time/line saver. Is this inappropiate?

int octet0 = 192;
int octet1 = 168;
int octet2 = 1;
int octet3 = 1;


It's *very* appropriate, for a few reasons:

1. (as you say above), it keeps the code more concise
(and still quite clear)

2. Readers of the code don't have to search around to
find where the objects first get their values.

3. (imo most important), if you forget to give them
values at all, and try to evalutate their values,
you get the dreaded 'undefined behavior.' I wrote
about this in my first reply.

-Mike
Nov 13 '05 #18
"hokieghal99" <ho********@hotmail.com> wrote in message
news:bl**********@solaris.cc.vt.edu...
Mike Wahler wrote:
First, if you share code here, if at all possible post
*compilable* code. Of course the fastest way for anyone
to spot any syntax errors is to paste your code into a
compiler and compile it. This I did, but first I had
to spend time deleting all those > characters. Actually,
their presence makes me suspect you copied that out of
a newsgroup post or email message.


Thanks, my mailer Mozilla Mail would not let me paste the source into
the body of the email unless I pasted it as a quotation. I'm soryy...
I'll remove all the '>' in the future. BTY, I wrote this myself from a
Python script that I wrote. I thought it would be a good way to start
out... converting Python scripts to C programs.


I don't think that's a good way at all. But that's
just my opinion. You run the risk of trying to apply
semantics, 'patterns' and idioms that make sense with
the old language where they might not make sense with
the new one. I see this all the time with folks moving
from/to C and C++. Moving from C to C++, I stumbled a
bit with this myself. The folks over at clc++ were
a great aid with this.
Also, learn to indent your code. What does the example
code in your textbook look like? Is it all left aligned
like that? Which textbook(s) are you reading?


Practical C Programming, 3rd Edition
by Steve Oualline
int octet0; /* Declare first octet of our IP range */
int octet1; /* Declare second octet of our IP range */
int octet2; /* Declare third octet of our IP range */
int octet3; /* Declare fourth octet (the one we generate) of our IP


range */

1. Those comments are worse than useless. They only clutter
the code and give no additional information. The identifier
names you're using (which are pretty good ones btw) already
convey the information in the comments (except the 'IP' part)


The author of my book wants everything commented. I guess it's a matter
of style, but I can see your point. Good names go a long way toward
being a comment. Thanks for the tip.

int main() /* This is the correct way to declare main... do not use
void
main() */

Correct. Though preferred would be

int main(void)


I do not understand this. Why is this preferred over int main()?


Well, it's not a real critical issue, but let me explain:

An empty function argument list in C does not mean
'no arguments', it means 'number and type(s) of argument(s)
is unspecified.' An argument list of (void) specifically
means 'no arguments'. The only valid argument lists for
main() are none at all, or
(int, char**, /* more optional implementation-defined ones */)

The () form is essentially obsolete (but kept for back-compatibility)

-Mike
Nov 13 '05 #19


On 9/30/2003 10:26 AM, Noah Roberts wrote:
<snip>
obfuscated. You may also wish to comment use of globals for instance
something like:

global_x = new_value; /* global_x is defined in globals.c */


If you move the definition of global_x from globals.c to bubba.c, you wouldn't
want to have to go and find everywhere you used global_x and change the
comments, so don't ever add a comment that needlessly couples your code like this.

Ed.

Nov 13 '05 #20
hokieghal99 wrote:

Something I just discovered.
I can declare a variable and initialize it
at the same time... this is a big time/line saver.
Is this inappropiate?
Yes.
int octet0 = 192;
int octet1 = 168;
int octet2 = 1;
int octet3 = 1;


You can have all kinds of fun with a program like that.
You can make it five octet ready:

/* BEGIN octet.c */

#include <stdio.h>

#define FN ips_c.txt
#define MODE w
#define INITIAL_VALUES {192, 168, 1, 1}
#define MAX 255
#define OCTETES (sizeof octet / sizeof*octet)
#define LAST (OCTETES - 1)
#define str(s) # s
#define xstr(s) str(s)

int main(void)
{
int octet[] = INITIAL_VALUES;
size_t byte;
FILE *fp;

fp = fopen(xstr(FN), xstr(MODE));
if (!fp) {
fp = stdout;
}
while (MAX >= octet[LAST]) {
for (byte = 0; byte != LAST; ++byte) {
fprintf(fp, "%d.", octet[byte]);
}
fprintf(fp, "%d\n", octet[LAST]);
++octet[LAST];
}
if (fp != stdout) {
fclose(fp);
puts("\nThe file '"xstr(FN)
"' was generated successfully...\n");
}
return 0;
}

/* END octet.c */

--
pete
Nov 13 '05 #21

"pete" <pf*****@mindspring.com> wrote in message
news:3F***********@mindspring.com...
hokieghal99 wrote:

Something I just discovered.
I can declare a variable and initialize it
at the same time... this is a big time/line saver.
Is this inappropiate?
Yes.


Why?
int octet0 = 192;
int octet1 = 168;
int octet2 = 1;
int octet3 = 1;


-Mike
Nov 13 '05 #22
pete wrote:

hokieghal99 wrote:

Something I just discovered.
I can declare a variable and initialize it
at the same time... this is a big time/line saver.
Is this inappropiate?


Yes.
int octet0 = 192;
int octet1 = 168;
int octet2 = 1;
int octet3 = 1;


I meant "No. That's fine".
I misread "inappropiate" as "appropiate".
Sorry.

--
pete
Nov 13 '05 #23
pete wrote:
pete wrote:
hokieghal99 wrote:
Is this inappropiate?


Yes.
int octet0 = 192;
int octet1 = 168;
int octet2 = 1;
int octet3 = 1;


I meant "No. That's fine".
I misread "inappropiate" as "appropiate".

"appropriate"

--
pete
Nov 13 '05 #24
Mac
On Tue, 30 Sep 2003 02:55:53 +0000, Mike Wahler wrote:
"Mac" <fo*@bar.net> wrote in message
news:pa****************************@bar.net...
Mike Wahler already critiqued the code. I'll just add that fclose()
returns a value, so if you are going to claim that you successfully wrote
the file, you should probably check the return value of fclose().


I always forget something. :-) Thanks.

-Mike

You caught an awful lot of stuff. And, if the OP checks to see that his
fwrite() calls are OK, like you said, there isn't any real reason for the
fclose to fail.

Mac
--
Nov 13 '05 #25
Mac <fo*@bar.net> wrote:
On Tue, 30 Sep 2003 02:55:53 +0000, Mike Wahler wrote:
"Mac" <fo*@bar.net> wrote in message
news:pa****************************@bar.net...
Mike Wahler already critiqued the code. I'll just add that fclose()
returns a value, so if you are going to claim that you successfully wrote
the file, you should probably check the return value of fclose().


I always forget something. :-) Thanks.

-Mike

You caught an awful lot of stuff. And, if the OP checks to see that his
fwrite() calls are OK, like you said, there isn't any real reason for the
fclose to fail.


It's possible for write errors to not be detected until fclose() time.

- Kevin.

Nov 13 '05 #26
"Mac" <fo*@bar.net> writes:
On Tue, 30 Sep 2003 02:55:53 +0000, Mike Wahler wrote:
"Mac" <fo*@bar.net> wrote in message
news:pa****************************@bar.net...
Mike Wahler already critiqued the code. I'll just add that fclose()
returns a value, so if you are going to claim that you successfully wrote
the file, you should probably check the return value of fclose().


I always forget something. :-) Thanks.

-Mike

You caught an awful lot of stuff. And, if the OP checks to see that his
fwrite() calls are OK, like you said, there isn't any real reason for the
fclose to fail.


Just because fwrite() succeeds doesn't mean anything's *actually*
been written. Typically, fclose() will cause any remaining data to be
written to be flushed out to the destination. Any problems with
this would cause fclose() to fail, and it's probably something
you should handle.

-Micah
Nov 13 '05 #27

"Micah Cowan" <mi***@cowan.name> wrote in message
news:m3************@localhost.localdomain...
"Mac" <fo*@bar.net> writes:
On Tue, 30 Sep 2003 02:55:53 +0000, Mike Wahler wrote:
"Mac" <fo*@bar.net> wrote in message
news:pa****************************@bar.net...

> Mike Wahler already critiqued the code. I'll just add that fclose()
> returns a value, so if you are going to claim that you successfully wrote> the file, you should probably check the return value of fclose().

I always forget something. :-) Thanks.

-Mike

You caught an awful lot of stuff. And, if the OP checks to see that his
fwrite() calls are OK, like you said, there isn't any real reason for the fclose to fail.


Just because fwrite() succeeds doesn't mean anything's *actually*
been written. Typically, fclose() will cause any remaining data to be
written to be flushed out to the destination. Any problems with
this would cause fclose() to fail, and it's probably something
you should handle.


And to OP or anyone else listening, more generally,
if any function's documentation specifies any possible
behavior (e.g. returning a particular value) which is
the result of an error or failure, one should always
check for that failure indicator. IMO one should eschew
"it simply cannot happen" from one's mind.

-Mike
Nov 13 '05 #28

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

Similar topics

5
by: Ron Adam | last post by:
Hi, I'm having fun learning Python and want to say thanks to everyone here for a great programming language. Below is my first Python program (not my first program) and I'd apreciate any...
30
by: Pieter Provoost | last post by:
Hi, I just made my first c++ program, and I would like to know if there are things I can do better. Also, the exe is about 500 kb, can I make it smaller? Thanks! Pieter
13
by: Todd | last post by:
I am curious of the origins of the "Hello World" program. Who was the first to make this popular? That is, where did it start? I did some Google search and did not find an answer. Was it...
5
by: cj | last post by:
Thanks to everyone that has helped me. Now I'm trying to write my first program. I have an example of one that I need to write about. Any help getting me started is appreciated. I'm having trouble...
26
by: mwt | last post by:
Hello. Today I wrote my first program in C. It adds up the elements in an array. I am just beginning to learn this language. Any tips or pointers about better ways to write/structure/format/etc....
16
by: Martin Joergensen | last post by:
Hi, I wanted to try something which I think is a very good exercise... I read in data from the keyboard and store them in a structure. There's a pointer called "data_pointer" which I use to...
7
by: Chris Lasher | last post by:
Hi all, I have a simple script: --- #!/usr/bin/env python a = 1 b = 2
3
by: cs | last post by:
Hi, I'm new to C and would appreciate any feedback on the following program, asplit, which splits a file into 2 new files, putting a certain number of lines in the first file, and all the rest...
4
by: Fritjolf | last post by:
Hi. I've got a strange problem... I've made a simple program to test encryption/decryption. I use Rijndael encryption and here are the most important properties. RijndaelManaged cipher =...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.