LINUX.ORG.RU

Ответ на: комментарий от Dominus

А вообще, если серьёзно, то

int main1()
{
...
}
int main2()
{
...
}
int main()
{
_begintread(main1, ...);
_begintread(main2, ...);
}

Это первое, что мне пришло в голову, когда я увидел эти main1, main2. Кому пришло в голову такое же -- поздравляю, пять балов. Кому пришло в голову:

int main1()
{
...
}
int main2()
{
...
}
int main()
{
CreateThread(main1, ...);
CreateThread(main2, ...);
}

===== Cut =====
-- тот получает четыре балла за то, что не инициализировал CRT.

Кто подумал:

int main1()
{
...
}
int main2()
{
...
}
int main()
{
pthread_create(main1, ...);
pthread_create(main2, ...);
}


-- тот получает пять с половиной баллов за использование никсов :)).
===== End Cut =====

За такое - отлучение от ЛОРа. Так что нефиг давать здесь на это ссылку. Они - никсофобы.

Ay49Mihas ★★★★
()
Ответ на: комментарий от Ay49Mihas

> -- тот получает четыре балла за то, что не инициализировал CRT.

А вообще-то проги под венду можно спокойно и без CRT писать :) #pragma linker(/NODEFAULTLIB) - че-то в таком роде... Helloworld в визуалстудии около килобайта размером получается :)

W98
()

Дискуссия малограмотных людей. Но направление мысли у спрашивающего верное.

Deleted
()

Хороше, теперь одним системщиком станет больше :)))))

anonymous
()

When I find my code in tons of trouble,
Friends and colleagues come to me,
Speaking words of wisdom:
Write in C.

As the deadline fast approaches,
And bugs are all that I can see,
Somewhere, someone whispers:
Write in C.

Write in C, write in C,
Write in C, oh, write in C.
LISP is dead and buried,
Write in C.

I used to write a lot of FORTRAN,
For science it worked flawlessly.
Try using it for graphics!
Write in C.

If you've just spent nearly 30 hours
Debugging some assembly,
Soon you will be glad to
Write in C.

Write in C, write in C,
Write in C, yeah, write in C.
Only wimps use BASIC.
Write in C.

When I go to fix a project
That looks promising but works lamely,
There's only one solution,
Write in C

Lame ivy-leaguers know the answers
Script in scheme, bind functionally
They suck cheese through their noses,
Write in C

Write in C, Write in C
Write in C, yeah Write in C
Guile this and I'll kick your teeth in,
Write in C.

{ Guitar Solo }

Write in C, write in C,
Write in C, yeah, write in C.
Don't even mention COBOL.
Write in C.

And when the screen is fuzzy,
And the editor is bugging me.
I'm sick of ones and zeros,
Write in C.

A thousand people swore that T.P.
Seven is the one for me.
I hate the word PROCEDURE,
Write in C.

Write in C, write in C,
Write in C, yeah, write in C.
PL1 is 80s,
Write in C.
Write in C, write in C,

Write in C, yeah, write in C.
The government loves ADA,
Write in C.

arax ★★
()
Ответ на: комментарий от arax

Рулез навсегда!!! Хоть я битлс и не люблю...

K48 ★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.