Donations to the archive would be appreciated to help fund our server hardware & storage drives. We are looking for developers to help build new software and archives, discuss here.

Threads by latest ghost replies - Page 388

No.44785912 View ViewReplyOriginalReport
What to help me with my homework /g/?

Why the fuck does why does the last arr2 printf keep giving a huge negative number?
int main()
{
int arr[100];
int arr2[9];
int size;
scanf("%d", &size);
initialize_array(arr, size);
printf("\n%d", count_numbers(arr, size, 4));
arr2[4]=count_numbers(arr, size, 4);
printf("\n%d", arr2[4]);
return 0;
}

void initialize_array(int arr[], int size)
{
int i;
srand(time(NULL));
for(i=0; i<size; i++)
{
arr[i]=rand()%10;
}
}

int count_numbers(int arr[], int size, int num)
{
int i, count;
for(i=0; i<size; i++)
{
if(arr[i]==num)
{
count++;
}
}
return count;
}
1 post omitted

No.44781805 View ViewReplyOriginalReport
Anyone use the middleton bios patches for their thinkpad. Are they safe? I want my thinkpad to be run without proprietary wifi drivers

No.44779149 View ViewReplyOriginalReport
/g/ approved wallpaper thread.
6 posts and 4 images omitted

No.37576051 View ViewReplyOriginalReport
Hey /g/, I'm a computer programming student stuck on a homework problem. I need to write this problem in C++

A video store sells Blu-ray discs for $9.99 each. They are having a “buy two get one free” sale now. For every two Blu-ray discs you buy, you can get the third one free. Write a program to calculate how much a customer needs to pay. The following are two examples.

How many Blu-ray discs are you buying? 7
Total price: $49.95

How many Blu-ray discs are you buying? 8
Total price: $59.94

I would really appreciate the help!
16 posts omitted
!!KH1sdwwfbWP

Lisp General: DPB

!!KH1sdwwfbWP No.44733263 View ViewReplyLast 50OriginalReport
This is the Lisp General, ask any and all Lisp questions here. Here's a link to the general's pastebin that contains many links to various books, documentation, websites, and other interesting information:

Check the pastebin:http://pastebin.com/u/g-lisp-general

Here's the /g/ wiki's page on Lisp:
http://wiki.installgentoo.com/index.php?title=Lisp

>To foster discussion:
Which dialect do you prefer?
Do you use Emacs or a different lisp-based editor?
What was your first experience with lisp?
What have you made in lisp?
What is your favorite Lisp program?
What do you like about Lisp?
How do you think Lisp is (one of) the superior programming language(s)?
How long have you been programming in Lisp?
What are your favorite Lisp resources? Please share, preferably links!
Is Lisp your main programming language or not? Regardless, what do you primarily use it for?
What would you like to see in the Lisp general?
What was your favorite aspect of the Lisp machines?
Do you think we'll ever get something similar to the LispMs again?
What is your preferred method of documenting your code?
In the dialects that allow it, do you make many reader macros or not?
Do you use more than one dialect? What are they and which do you prefer?
What do you consider the criteria for what constitutes a Lisp to be?
What is your favorite function in your chosen dialect(s)?
170 posts and 11 images omitted

No.44754971 View ViewReplyOriginalReport
When did 8 to 5 become the standard over 9 to 5?
16 posts and 2 images omitted

No.41523724 View ViewReplyLast 50OriginalReport
Whats a good free key logger?

My wife keeps setting Firefox to never remember history and I wanna know what that shes getting up to on my computer.
217 posts and 14 images omitted

No.28225511 View ViewReplyLast 50OriginalReport
I am looking for a person that has used logism or a person that has skill making digital logic circuits, it's for an assignment just lemme know if you're interested, ty brah
64 posts and 7 images omitted
!!KH1sdwwfbWP

Lisp General: LDB

!!KH1sdwwfbWP No.44659305 View ViewReplyLast 50OriginalReport
This is the Lisp General, ask any and all Lisp questions here. Here's a link to the general's pastebin that contains many links to various books, documentation, websites, and other interesting information:

Check the pastebin:http://pastebin.com/u/g-lisp-general

Here's the /g/ wiki's page on Lisp:
http://wiki.installgentoo.com/index.php?title=Lisp

>To foster discussion:
Which dialect do you prefer?
Do you use Emacs or a different lisp-based editor?
What was your first experience with lisp?
What have you made in lisp?
What is your favorite Lisp program?
What do you like about Lisp?
How do you think Lisp is (one of) the superior programming language(s)?
How long have you been programming in Lisp?
What are your favorite Lisp resources? Please share, preferably links!
Is Lisp your main programming language or not? Regardless, what do you primarily use it for?
What would you like to see in the Lisp general?
What was your favorite aspect of the Lisp machines?
Do you think we'll ever get something similar to the LispMs again?
What is your preferred method of documenting your code?
In the dialects that allow it, do you make many reader macros or not?
Do you use more than one dialect? What are they and which do you prefer?
What do you consider the criteria for what constitutes a Lisp to be?
What is your favorite function in your chosen dialect(s)?
262 posts and 13 images omitted
!!fBJ1Z9G8RuA

!!fBJ1Z9G8RuA No.29509380 View ViewReplyLast 50OriginalReport
I am making a Torrent Client. What cool features you suggest ?

So far i got

- Per tracker settings

I already have a name, but i will not disclose it now.

As a programmer, i get bored quickly, so i don't intend now to make a Web UI.

Here is the UI so far
52 posts and 3 images omitted