Advertisement

My first gaming interview

Started by October 07, 2004 01:55 AM
13 comments, last by GameDev.net 20 years, 1 month ago
Quote: Original post by Alpha_ProgDes
what is the answer?
guranteed to be less than or equal to an int? or a short?
edit: good luck on your interview... if they ask about your game, make sure you can explain the game, story, and process of making it very clearly.

Depends on the system architecture (which isn't the same as depending on the CPU) and is the size of a byte on that architecture. Typically this is 8 bits but there have been 7 bit system and I've even heard of systems with a byte being 12 bits.
"Voilà! In view, a humble vaudevillian veteran, cast vicariously as both victim and villain by the vicissitudes of Fate. This visage, no mere veneer of vanity, is a vestige of the vox populi, now vacant, vanished. However, this valorous visitation of a bygone vexation stands vivified, and has vowed to vanquish these venal and virulent vermin vanguarding vice and vouchsafing the violently vicious and voracious violation of volition. The only verdict is vengeance; a vendetta held as a votive, not in vain, for the value and veracity of such shall one day vindicate the vigilant and the virtuous. Verily, this vichyssoise of verbiage veers most verbose, so let me simply add that it's my very good honor to meet you and you may call me V.".....V
Quote: Original post by DudeMiester
Dammit! I'm more qualified then you for game programming, and I applied to some places and all rejected me right away with no interview. But I know C++ very well, experiance with OpenGL, Nvidia's CG, good at theoretical graphics/physics, learn almost at the speed of light, very good at math, very good at problem solving, etc.


Well, if your real life persona matches your online one, I can see why. It seems humility is not in your strong suit.

Some things I'd change:

get a new email handle

strip out most of the non-computer stuff out of your resume - none of your listed work experience is remotely relevant

nowhere on your resume does it give me the indication that you are a gamer
Advertisement
Quote: Original post by Alpha_ProgDes
what is the answer?
guranteed to be less than or equal to an int? or a short?
edit: good luck on your interview... if they ask about your game, make sure you can explain the game, story, and process of making it very clearly.


The answer is whatever the compiler says it is within the constraints set out in the standard: sizeof char <= sizeof short <= sizeof int.

It's perfectly legal to have an IA32 C compiler that defines char as 16 bits. It wouldn't be a good idea because 16 bit values aren't particularly efficent when the CPU is in 32 bit mode - it would require data and instruction size prefixes everywhere.

People sometimes think it's the CPU architecture that dictates the size - which isn't entirely wrong: compiler writers would define the size of the various types to map to sizes the CPU handle well. I remember when PC C compilers had 16 bit ints - before the advent of Win32. Infact, the WinProc in Win32 programming displays the 16 bit legacy: WPARAM for an int? Surely that's Hungarian Notation for a WORD value, which is 16 bits? Which is indeed what it was in Win3.1 and earlier. (And that's one reason Hungarian Notation is bad - even the people that invented it can't be bothered to go through all their code and update the Hungarian prefixes.)

Skizz
Quote: Original post by DudeMiester
Dammit! I'm more qualified then you for game programming, and I applied to some places and all rejected me right away with no interview. But I know C++ very well, experiance with OpenGL, Nvidia's CG, good at theoretical graphics/physics, learn almost at the speed of light, very good at math, very good at problem solving, etc. Maybe it's my resume lol, I'm not very good at making them. :shrug:

Well good luck, and I hope you get a job, I wish I could, sigh...


maybe some links to some Java or Flash programs* would spice or enhance the resume?

programs* such as 3D demos, games, etc.

Beginner in Game Development?  Read here. And read here.

 

Quote: Original post by Skizz
"In C, what size is a char?"


Answer: Who cares? I you REALLY need to know, do a sizeof(char).

This topic is closed to new replies.

Advertisement