Re: More Funny Stuff From Joel

Liste des GroupesRevenir à ol advocacy 
Sujet : Re: More Funny Stuff From Joel
De : candycanearter07 (at) *nospam* candycanearter07.nomail.afraid (candycanearter07)
Groupes : comp.os.linux.advocacy
Date : 11. Jun 2024, 04:40:08
Autres entêtes
Organisation : the-candyden-of-code
Message-ID : <slrnv6f9fl.2hg.candycanearter07@candydeb.host.invalid>
References : 1 2 3 4 5 6 7
User-Agent : slrn/1.0.3 (Linux)
DFS <nospam@dfs.com> wrote at 23:30 this Saturday (GMT):
On 6/8/2024 5:32 PM, Joel wrote:
>
I can't imagine I'd need anything beyond C.
>
>
I hope you're not gonna pull a Feeb and claim you're a C guru that can
'move the Earth', but refuse to show ANY decent code, then make lame
excuses like "I have other fish to fry".

Seems like a fun challenge.. especially since im kinda rusty with c

1) write your own C to sort these 3 names (by last then first):
>
William Thomas
Zachary Jones
Jim Thomas

I'll be honest, I might be bad but I completely forgot how to sort
strings.. sorry

2) write your own C to count the words in:
>
"Now is the time for all good men to come to the aid of their country."

#include <stdio.h>
#include <ctype.h>

const char phrase[] = "Now is the time for all good men to come to the
aid of their country.";

int main()
{
const char *phr = phrase;
int words = 0;
int space = 0;   // does c have bool?

while(*phr)
{
if(space && isalpha(*phr))
{
space = 0;
words++;
}
if(isblank(*phr)) space = 1;

phr++;
}

printf("Words: %d, words);
}

3) write your own C to calc the mean, median and mode of:
>
1,2,3,4,5,5,6,7,8,9

#include <stdio.h>
#define COUNT_CNT 10

int nums[] = {1, 2, 3, 4, 5, 5, 6, 7, 8, 9, -1};

int main()
{
double mean;
int median, mode, md_count[COUNT_CNT], len;

for( len = 0; nums[len] != -1; len++ )
{
mean += nums[len];
md_count[nums[len]]++;
}
mean /= len;

if(len % 2 == 0)
{
int mid = len / 2;
median = nums[mid] + nums[mid + 1]];
median /= 2;
}
else
median = nums[len / 2];

for( int i = 0; i < COUNT_CNT; i++ )
{
if(md_count[mode] < md_count[i]) mode = i;
}

printf("mean %g, median %d, mode %d", mean, median, mode);
}

These compiled fine on my machine (gcc 12.2.0)

Why is it I have a VERY strong feeling you and Feeb and C are about to
be pwned by python?


IMO, both are pretty good languages, with their own strengths..like, C
is good for dealing with the raw data and it can be really satisfying to
get everything working, and python is great for throwing something
together.
--
user <candycane> is generated from /dev/urandom

Date Sujet#  Auteur
8 Jun 24 * More Funny Stuff From The Joke Python131Diego Garcia
8 Jun 24 +* Re: More Funny Stuff From The Joke Python117Joel
8 Jun 24 i+* Re: More Funny Stuff From The Joke Python110rbowman
8 Jun 24 ii`* Re: More Funny Stuff From The Joke Python109rbowman
8 Jun 24 ii +* Languages (was: Re: More Funny Stuff From The Joke Python)7vallor
8 Jun 24 ii i+* Re: Languages2%
8 Jun 24 ii ii`- Re: Languages1vallor
9 Jun 24 ii i`* Re: Languages (was: Re: More Funny Stuff From The Joke Python)4Lawrence D'Oliveiro
24 Jun 24 ii i `* Re: Languages (was: Re: More Funny Stuff From The Joke Python)3Sebastian Wells
24 Jun 24 ii i  +- Re: Languages (was: Re: More Funny Stuff From Python)1Lawrence D'Oliveiro
24 Jun 24 ii i  `- Re: Languages (was: Re: More Funny Stuff From The Joke Python)1rbowman
9 Jun 24 ii +* Re: More Funny Stuff From Joel95DFS
9 Jun 24 ii i+- Re: More Funny Stuff From Joel1Lawrence D'Oliveiro
9 Jun 24 ii i+* Re: More Funny Stuff From Joel2rbowman
9 Jun 24 ii ii`- Re: More Funny Stuff From Joel1Chris Ahlstrom
9 Jun 24 ii i+* Re: More Funny Stuff From Joel34Tyrone
9 Jun 24 ii ii+* Re: More Funny Stuff From Joel6Joel
9 Jun 24 ii iii`* Re: More Funny Stuff From Joel5rbowman
9 Jun 24 ii iii `* Re: More Funny Stuff From Joel4Joel
9 Jun 24 ii iii  `* Re: More Funny Stuff From Joel3rbowman
9 Jun 24 ii iii   `* Re: More Funny Stuff From Joel2Joel
9 Jun 24 ii iii    `- Re: More Funny Stuff From Joel1rbowman
11 Jun 24 ii ii+* Re: More Funny Stuff From Joel14candycanearter07
11 Jun 24 ii iii+* Re: More Funny Stuff From Joel2Chris Ahlstrom
12 Jun 24 ii iiii`- Re: More Funny Stuff From Joel1candycanearter07
14 Jun 24 ii iii`* Re: More Funny Stuff From Joel11Stéphane CARPENTIER
14 Jun 24 ii iii `* Re: More Funny Stuff From Joel10Farley Flud
14 Jun 24 ii iii  +* Re: More Funny Stuff From Joel8Stéphane CARPENTIER
14 Jun 24 ii iii  i`* Re: More Funny Stuff From Joel7Farley Flud
15 Jun 24 ii iii  i +- Re: More Funny Stuff From Joel1DFS
15 Jun 24 ii iii  i `* Re: More Funny Stuff From Joel5Stéphane CARPENTIER
15 Jun 24 ii iii  i  +* Re: More Funny Stuff From Joel2Farley Flud
15 Jun 24 ii iii  i  i`- Re: More Funny Stuff From Joel1Stéphane CARPENTIER
15 Jun 24 ii iii  i  `* Re: More Funny Stuff From Joel2Farley Flud
15 Jun 24 ii iii  i   `- Re: More Funny Stuff From Joel1Stéphane CARPENTIER
14 Jun 24 ii iii  `- Re: More Funny Stuff From Joel1DFS
14 Jun 24 ii ii`* Re: More Funny Stuff From Joel13Stéphane CARPENTIER
14 Jun 24 ii ii `* Re: More Funny Stuff From Joel12Joel
14 Jun 24 ii ii  +* Re: More Funny Stuff From Joel6Stéphane CARPENTIER
15 Jun 24 ii ii  i`* Re: More Funny Stuff From Joel5candycanearter07
15 Jun 24 ii ii  i +* Re: More Funny Stuff From Joel2Joel
16 Jun 24 ii ii  i i`- Re: More Funny Stuff From Joel1candycanearter07
16 Jun 24 ii ii  i `* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
16 Jun 24 ii ii  i  `- Re: More Funny Stuff From Joel1candycanearter07
16 Jun 24 ii ii  `* Re: More Funny Stuff From Joel5Lawrence D'Oliveiro
16 Jun 24 ii ii   `* Re: More Funny Stuff From Joel4Joel
16 Jun 24 ii ii    +* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
16 Jun 24 ii ii    i`- Re: More Funny Stuff From Joel1Joel
19 Jun 24 ii ii    `- Re: More Funny Stuff From Joel1Joel
9 Jun 24 ii i+* Re: More Funny Stuff From Joel20DFS
9 Jun 24 ii ii`* Re: More Funny Stuff From Joel19Joel
9 Jun 24 ii ii `* Re: More Funny Stuff From Joel18rbowman
9 Jun 24 ii ii  `* Re: More Funny Stuff From Joel17Joel
9 Jun 24 ii ii   +- Re: More Funny Stuff From Joel1%
9 Jun 24 ii ii   +* Re: More Funny Stuff From Joel5DFS
9 Jun 24 ii ii   i`* "Standard GUI" (was: Re: More Funny Stuff From Joel)4vallor
10 Jun 24 ii ii   i +- Re: "Standard GUI"1rbowman
10 Jun 24 ii ii   i `* Re: "Standard GUI"2Lawrence D'Oliveiro
10 Jun 24 ii ii   i  `- Re: "Standard GUI"1Chris Ahlstrom
9 Jun 24 ii ii   +- Re: More Funny Stuff From Joel1rbowman
11 Jun 24 ii ii   `* Re: More Funny Stuff From Joel9candycanearter07
11 Jun 24 ii ii    +* Re: More Funny Stuff From Joel2DFS
11 Jun 24 ii ii    i`- Re: More Funny Stuff From Joel1Lawrence D'Oliveiro
11 Jun 24 ii ii    `* Re: More Funny Stuff From Joel6Joel
12 Jun 24 ii ii     +* Re: More Funny Stuff From Joel4Lawrence D'Oliveiro
12 Jun 24 ii ii     i+* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
12 Jun 24 ii ii     ii`- Re: More Funny Stuff From Joel1Chris Ahlstrom
12 Jun 24 ii ii     i`- Re: More Funny Stuff From Joel1candycanearter07
12 Jun 24 ii ii     `- Re: More Funny Stuff From Joel1candycanearter07
11 Jun 24 ii i`* Re: More Funny Stuff From Joel37candycanearter07
11 Jun 24 ii i +- Re: More Funny Stuff From Joel1Lawrence D'Oliveiro
11 Jun 24 ii i +* Re: More Funny Stuff From Joel10rbowman
11 Jun 24 ii i i`* Re: More Funny Stuff From Joel9candycanearter07
11 Jun 24 ii i i `* Re: More Funny Stuff From Joel8rbowman
11 Jun 24 ii i i  +* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
11 Jun 24 ii i i  i`- Re: More Funny Stuff From Joel1candycanearter07
11 Jun 24 ii i i  `* Re: More Funny Stuff From Joel5Chris Ahlstrom
11 Jun 24 ii i i   `* Re: More Funny Stuff From Joel4rbowman
11 Jun 24 ii i i    +- Re: More Funny Stuff From Joel1Chris Ahlstrom
12 Jun 24 ii i i    `* Re: More Funny Stuff From C2Lawrence D'Oliveiro
12 Jun 24 ii i i     `- Re: More Funny Stuff From C1candycanearter07
11 Jun 24 ii i +* Re: More Funny Stuff From Joel2rbowman
12 Jun 24 ii i i`- Re: More Funny Stuff From Python1Lawrence D'Oliveiro
12 Jun 24 ii i `* Re: More Funny Stuff From Joel23candycanearter07
12 Jun 24 ii i  +* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
13 Jun 24 ii i  i`- Re: More Funny Stuff From Joel1candycanearter07
13 Jun 24 ii i  `* Re: More Funny Stuff From Joel20candycanearter07
13 Jun 24 ii i   `* Re: More Funny Stuff From Joel19DFS
13 Jun 24 ii i    `* Re: More Funny Stuff From Joel18rbowman
14 Jun 24 ii i     +* Re: More Funny Stuff From Joel16rbowman
14 Jun 24 ii i     i`* Re: More Funny Stuff From Joel15rbowman
15 Jun 24 ii i     i +* Re: More Funny Stuff From Joel13rbowman
17 Jun 24 ii i     i i`* Re: More Funny Stuff From Joel12rbowman
18 Jun 24 ii i     i i `* Re: More Fun Stuff From Lunar Lander11Lawrence D'Oliveiro
18 Jun 24 ii i     i i  `* Re: More Fun Stuff From Lunar Lander10rbowman
18 Jun 24 ii i     i i   +* Re: More Fun Stuff From Lunar Lander2Farley Flud
18 Jun 24 ii i     i i   i`- Re: More Fun Stuff From Lunar Lander1Joel
24 Jun 24 ii i     i i   `* Re: More Fun Stuff From Lunar Lander7Lawrence D'Oliveiro
24 Jun 24 ii i     i i    `* Re: More Fun Stuff From Lunar Lander6rbowman
24 Jun 24 ii i     i i     `* Re: More Fun Stuff From Lunar Lander5Lawrence D'Oliveiro
24 Jun 24 ii i     i i      `* Re: More Fun Stuff From Lunar Lander4rbowman
16 Jun 24 ii i     i `- Re: More Funny Stuff From Python1Lawrence D'Oliveiro
14 Jun 24 ii i     `- Re: More Funny Stuff From Joel1candycanearter07
9 Jun 24 ii +- Re: More Funny Stuff From The Joke Python1rbowman
9 Jun 24 ii +- Re: More Funny Stuff From The Joke Python1Lawrence D'Oliveiro
14 Jun 24 ii `* Re: More Funny Stuff From The Joke Python4Stéphane CARPENTIER
8 Jun 24 i`* Re: More Funny Stuff From The Joke Python6DFS
8 Jun 24 +* Re: More Funny Stuff From The Joke Python6vallor
8 Jun 24 +* Re: More Funny Stuff From Feeb's Life3DFS
8 Jun 24 +* Re: More Funny Stuff From The Joke Python2rbowman
9 Jun 24 +- Re: More Funny Stuff From The Joke Python1Lawrence D'Oliveiro
14 Jun 24 `- Re: More Funny Stuff From The Joke Python1Stéphane CARPENTIER

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal