Search found 3 matches

by Finmann
Mon Feb 18, 2013 7:57 pm
Forum: Forum 42
Topic: Vinyl Game Machine
Replies: 3
Views: 21718

Vinyl Game Machine

I was looking for a sort of 'lounge thread', but I'll just ask here.

I was wondering if anyone has made a game console that loads games off vinyl records ?
A quick referencless search on google and someone spouted a vinyl could hold 150MB?
by Finmann
Mon Feb 20, 2012 5:24 am
Forum: Technical Questions and Answers
Topic: C and float value problem
Replies: 2
Views: 5053

Re: C and float value problem

marshallh wrote:

Code: Select all

    quotient = (float)one / (float)two;
Ah, thx mate, that sorted it out.
by Finmann
Wed Feb 15, 2012 1:16 am
Forum: Technical Questions and Answers
Topic: C and float value problem
Replies: 2
Views: 5053

C and float value problem

Hi first off here is my code (It's C, not C++, just C)

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
int one;
int two;
int times;
int sum;
int diff;
float quotient;
char inString[81];
printf("Input a value \n");
gets(inString);
one = atoi(inString);
printf("Input a second ...