473,405 Members | 2,379 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,405 software developers and data experts.

scope q

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
-------
May 29 '06 #1
6 1745
On Mon, 29 May 2006 19:53:15 -0400, Frank Silvermann
<in*****@invalid.net> wrote:
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
May 30 '06 #2
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

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
May 30 '06 #3
Barry Schwarz wrote:
On Mon, 29 May 2006 19:53:15 -0400, Frank Silvermann
<in*****@invalid.net> wrote:
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?
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.

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
May 30 '06 #4
On Tue, 30 May 2006 03:31:42 -0400, Frank Silvermann
<in*****@invalid.net> wrote:
Barry Schwarz wrote:
On Mon, 29 May 2006 19:53:15 -0400, Frank Silvermann
<in*****@invalid.net> wrote:
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.
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?
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.

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
May 31 '06 #5

"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.

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.
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

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
Jun 1 '06 #6
"Joe Smith" <gr**********@netzero.net> writes:
"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.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jun 1 '06 #7

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

Similar topics

3
by: Anonymous | last post by:
Is namespace the same thing as scope? While reading the book "Thinking in C++", I was under the impression that namespace is, well, a namespace--a feature to create a hiearchy for identifiers...
6
by: pembed2003 | last post by:
Hi all, I am reading the book "C++ How to Program" and in the chapter where it discuss scope rule, it says there are four scopes for a variable: function scope file scope block scope...
5
by: pembed2003 | last post by:
Hi all, I am reading the book "C How to Program" and in the chapter where it discuss scope rule, it says there are four scopes for a variable: function scope file scope block scope...
8
by: TTroy | last post by:
I have a few questions about "scope" and "visibility," which seem like two different things. To me "visibility" of the name of a function or object is the actual code that can use it in an...
3
by: marco_segurini | last post by:
Hi, I am using VS 2005. If I compile the following code only line 6 returns me an error while line 9 returns a warning. If I comment the line 6 and debug the program the assignments of lines...
39
by: utab | last post by:
Dear all, Is there a clear distinction how to decide which functions to be members of a class and which not How is your attitude (Your general way from your experiences ...) "If the...
7
by: Christian Christmann | last post by:
Hi, I've a a question on the specifier extern. Code example: void func( void ) { extern int e; //...
1
by: Steven T. Hatton | last post by:
All of the following terms are used in some way to describe where and how a name is relevant to a particular location in a program: visible, declarative region, scope, potential scope, valid,...
1
pbmods
by: pbmods | last post by:
VARIABLE SCOPE IN JAVASCRIPT LEVEL: BEGINNER/INTERMEDIATE (INTERMEDIATE STUFF IN ) PREREQS: VARIABLES First off, what the heck is 'scope' (the kind that doesn't help kill the germs that cause...
1
by: Giacomo Catenazzi | last post by:
Hello, To learn the details of C, I've build the following example, could you check if it is correct and if it miss some important cases? Are there some useful (real cases) examples of: -...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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,...
0
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...

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.