scope q

F

Frank Silvermann

I have taken an extraordinary leap into the modern world by purchasing
webspace. In addition to my private concerns, I would like to make a
part to which others, e.g. my nieces and ex-wife, can ftp. To keep a
hold of the reigns, I shall write a program that changes the password,
and the brains of this prog will be in C:
#def MIN_WORD_LENGTH 9
#def MAX_WORD_LENGTH 15

/* subroutine for random permutation */
void permute(char *, int)

/* main

char p[] = "abcdefghijklmnopqrstuvwxyz";
char q[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
char r[] = "0123456789";
void swap(char *, char *);

end main */

void permute(char *m , int n)
{ ; }

void swap(char *a, char *b)
{
char c;
c = *a;
*a = *b;
*b = c;
}
/* end pseudosource */
I'm going to build a word from p, q and r. At this point, I have 2
questions:
1) Does the scope look right? I've got the subroutine at file scope and
the swap at block scope. If I make a call to swap from within permute(),
is every ISO compiler going to know what I'm talking about?
2) Is it foolhardy of me to think that I can permute a string given its
pointer and length, without needing any information back, hence the void
declaration? frank
-------
 
B

Barry Schwarz

I have taken an extraordinary leap into the modern world by purchasing
webspace. In addition to my private concerns, I would like to make a
part to which others, e.g. my nieces and ex-wife, can ftp. To keep a
hold of the reigns, I shall write a program that changes the password,
and the brains of this prog will be in C:
#def MIN_WORD_LENGTH 9
#def MAX_WORD_LENGTH 15

/* subroutine for random permutation */
void permute(char *, int)

/* main

char p[] = "abcdefghijklmnopqrstuvwxyz";
char q[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
char r[] = "0123456789";
void swap(char *, char *);

end main */

void permute(char *m , int n)
{ ; }

void swap(char *a, char *b)
{
char c;
c = *a;
*a = *b;
*b = c;
}
/* end pseudosource */
I'm going to build a word from p, q and r. At this point, I have 2
questions:
1) Does the scope look right? I've got the subroutine at file scope and
the swap at block scope. If I make a call to swap from within permute(),
is every ISO compiler going to know what I'm talking about?

All your subroutines are at file scope. You don't have a choice about
this since C does not allow nested functions.

If the prototype for swap() is really inside the body of main(), then
when you call it inside permute(), the compiler will not know what
types of arguments it takes or what kind of value it returns. In C99
a diagnostic is required. In C89, the compiler must assume it returns
an int, which is incorrect in this case. Many compilers will also
generate an discretionary diagnostic about the missing prototype. If
you move the code for swap() before the code for permute(), the
problem goes away. The oft recommended approach here is to put your
prototypes at file scope; it's just cleaner all around.
2) Is it foolhardy of me to think that I can permute a string given its
pointer and length, without needing any information back, hence the void
declaration? frank

Since permute() receives a pointer to the string (as opposed to the
string itself), it can update the string in place. You don't need to
pass the length (though it is more efficient in my opinion) since
permute could figure it out (e.g., strlen). Whether or not your
function can generate a permutation with no other knowledge is an
algorithm question. I expect the answer can be found in Knuth's
masterpiece.


Remove del for email
 
R

Richard Heathfield

Frank Silvermann said:
At this point, I have 2 questions:
1) Does the scope look right? I've got the subroutine at file scope and
the swap at block scope.

If you want a function for swap() - which is by no means necessary - it must
be at file scope, since C does not support the nesting of functions.
If I make a call to swap from within permute(),
is every ISO compiler going to know what I'm talking about?

C supports function-call syntax, yes.
2) Is it foolhardy of me to think that I can permute a string given its
pointer and length, without needing any information back, hence the void
declaration?

No, if you just mean a random permutation:

for J = 0 to (N - 1)
R = Pseudo-random number in range J to (N - 1)
swap S[J], S[R]
next
all done
 
F

Frank Silvermann

Barry said:
I have taken an extraordinary leap into the modern world by purchasing
webspace. In addition to my private concerns, I would like to make a
part to which others, e.g. my nieces and ex-wife, can ftp. To keep a
hold of the reigns, I shall write a program that changes the password,
and the brains of this prog will be in C:
#def MIN_WORD_LENGTH 9
#def MAX_WORD_LENGTH 15

/* subroutine for random permutation */
void permute(char *, int)

/* main

char p[] = "abcdefghijklmnopqrstuvwxyz";
char q[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
char r[] = "0123456789";
void swap(char *, char *);

end main */

void permute(char *m , int n)
{ ; }

void swap(char *a, char *b)
{
char c;
c = *a;
*a = *b;
*b = c;
}
/* end pseudosource */
I'm going to build a word from p, q and r. At this point, I have 2
questions:
1) Does the scope look right? I've got the subroutine at file scope and
the swap at block scope. If I make a call to swap from within permute(),
is every ISO compiler going to know what I'm talking about?

All your subroutines are at file scope. You don't have a choice about
this since C does not allow nested functions.
I'm not understanding something here.
If the prototype for swap() is really inside the body of main(), then
when you call it inside permute(), the compiler will not know what
types of arguments it takes or what kind of value it returns. In C99
a diagnostic is required. In C89, the compiler must assume it returns
an int, which is incorrect in this case. Many compilers will also
generate an discretionary diagnostic about the missing prototype. If
you move the code for swap() before the code for permute(), the
problem goes away. The oft recommended approach here is to put your
prototypes at file scope; it's just cleaner all around.
I'll be fine with declaring at file scope. Why would one, given a
possible confrontation with something that sounds like 'agnostic', do
otherwise?
Since permute() receives a pointer to the string (as opposed to the
string itself), it can update the string in place. You don't need to
pass the length (though it is more efficient in my opinion) since
permute could figure it out (e.g., strlen). Whether or not your
function can generate a permutation with no other knowledge is an
algorithm question. I expect the answer can be found in Knuth's
masterpiece.
I need LESS than I thought? (Rhetorical question). Since I'll want
cases to be equiprobable, the length will be known in main before it
calls the subroutine. Seems like cheating. frank
 
B

Barry Schwarz

Barry said:
I have taken an extraordinary leap into the modern world by purchasing
webspace. In addition to my private concerns, I would like to make a
part to which others, e.g. my nieces and ex-wife, can ftp. To keep a
hold of the reigns, I shall write a program that changes the password,
and the brains of this prog will be in C:
#def MIN_WORD_LENGTH 9
#def MAX_WORD_LENGTH 15

/* subroutine for random permutation */
void permute(char *, int)

/* main

char p[] = "abcdefghijklmnopqrstuvwxyz";
char q[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
char r[] = "0123456789";
void swap(char *, char *);

end main */

void permute(char *m , int n)
{ ; }

void swap(char *a, char *b)
{
char c;
c = *a;
*a = *b;
*b = c;
}
/* end pseudosource */
I'm going to build a word from p, q and r. At this point, I have 2
questions:
1) Does the scope look right? I've got the subroutine at file scope and
the swap at block scope. If I make a call to swap from within permute(),
is every ISO compiler going to know what I'm talking about?

All your subroutines are at file scope. You don't have a choice about
this since C does not allow nested functions.
I'm not understanding something here.

You said swap was at block scope (5 lines up). The function swap is
not at block scope. It is at file scope. All functions are at file
scope.
I'll be fine with declaring at file scope. Why would one, given a
possible confrontation with something that sounds like 'agnostic', do
otherwise?

I need LESS than I thought? (Rhetorical question). Since I'll want
cases to be equiprobable, the length will be known in main before it
calls the subroutine. Seems like cheating. frank

But will it be known in permute?


Remove del for email
 
J

Joe Smith

"Richard Heathfield"
Frank Silvermann said:

If you want a function for swap() - which is by no means necessary - it
must
be at file scope, since C does not support the nesting of functions.
I'd be embarrassed to reveal how many times I've made this mistake. There
is something down there that is really puzzling me, but maybe I need to be
emphatic: hey, dummy, declare functions at file scope.
C supports function-call syntax, yes
That is, when properly put at file scope.

2) Is it foolhardy of me to think that I can permute a string given its
pointer and length, without needing any information back, hence the void
declaration?

No, if you just mean a random permutation:

for J = 0 to (N - 1)
R = Pseudo-random number in range J to (N - 1)
swap S[J], S[R]
next
all done

I have to bug out as OP on this, as not only have my newsreaders gone
Indian, so have my Indians. C dreams. joe
 
K

Keith Thompson

Joe Smith said:
"Richard Heathfield" [...]
If you want a function for swap() - which is by no means necessary - it
must
be at file scope, since C does not support the nesting of functions.
I'd be embarrassed to reveal how many times I've made this mistake. There
is something down there that is really puzzling me, but maybe I need to be
emphatic: hey, dummy, declare functions at file scope.

To be precise, function *declarations* at block scope are perfectly
legal (though many would argue that they're bad style). Function
*definitions* may only appear at file scope.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

My Status, Ciphertext 2
Blue J Ciphertext Program 2
C language. work with text 3
struct init and assign / scope problem 10
rand in a closed interval on the ints 10
Queue in C 25
Constant strings 267
Lexical Analysis on C++ 1

Members online

Forum statistics

Threads
473,968
Messages
2,570,150
Members
46,696
Latest member
BarbraOLog

Latest Threads

Top