Z
zfddfesdedsed
From: Emmanuel Delahaye <[email protected]>
You *must* use a valid from address as per the rules of your news service
provider.
You could lose your account.
From: Emmanuel Delahaye <[email protected]>
Pushkar Pradhan said:Did you try this?
In C you have to declare all variables first and then start your code.
So you would have to do
int a;
int i;
What you did is allowed in c++. I mean this code:
Won't compile.
You *must* use a valid from address as per the rules of your news service
provider.
You could lose your account.
1 - Mind your own business
2 - My news provider has my address. I connect via a a login and password.
[email protected] said:
In 'comp.lang.c' said:Still not minding your own business. It is clear to anyone
looking at the above what Mr. Delahaye's actual address is. While
it may be a technical violation of their rules, their rules are
absurdly broken: their recommended workaround is to use a free
address and not check it, which has the net effect of not
providing other readers with a means by which to contact him (and
if he goes for the other reccomendations--check it
sporadically--it is unnecessary time wasted reading
spams). Contrary to their assertions, this is a clear violation
of netiquette.
If anyone actually blocks his account over such a triviality, I'd
recommend launching a boycott of their service.
While we're on the subject, perhaps some of us should point out
these obvious flaws to the service?
Emmanuel Delahaye said:1 - Mind your own business
Richard Bos said:He's right, though. IIRC you're even in violation of an RFC if you don't
have a valid reply-to. Apart from that, some people, me included, won't
unmunge an address to send e-mail.
Joona I Palaste said:Why won't you? Because you don't have the time? Because you don't know
how? Because you have to uphold a code of honour and to unmunge
addresses would be a disgrace?
Because if people won't be decent netizens, keep to the RFCs and refrain
from munging their addresses (and by munging, add to the load on the
central DNS servers, and thereby to all the rest of us), I don't see why
I should make any extra effort for their sakes.
1 - Mind your own business
Apart from that, some people, me included, won't
unmunge an address to send e-mail.
{
{
int a;
}
printf("%d\n", a); /* ERROR - Invalid */
return 0;
}
Locals are pushed on the stack when the function where they're declared gets
invoked
and are destroyed when the function returns.
void foo
{
{ int a; }
{ int b; }
}
IMHO the compiler might choose here wheather to assign a and b the same
memory location or not since you cannot use a or b together. thats similar
to declaring a union.
provide a stack.
Ahrrchrrchrrrarrrrgh-gh... WHAT? Exchanging eyeballs with tomatoes is
similar to wearing a pair of glasses?
where should local variables be stored then? if not a stack then it must be
something similar to a stack.
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.