Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
Favorite Tags

11 Posted Topics

Member Avatar for moroccanplaya

[QUOTE=moroccanplaya;1245485]then i dont know why we learn c for the first year of uni then move straight to java on the second year, 1 year of c is not enough[/QUOTE] Java is a terribly hard language to learn as your first language, their goal might have been to teach you …

Member Avatar for griswolf
0
360
Member Avatar for stanleyz

Please use the code tags next time you post code. If the code you have works correctly so far (when the user enters '1', the program prints "this is func_1") then it looks like you just need to put some logic into the functions you've made there. That being said, …

Member Avatar for oieronle
0
277
Member Avatar for bobyx

[url]http://en.wikipedia.org/wiki/Bitwise_operation[/url] The above page describes in detail what each type of operator does. Before I get any criticism, I know it's a wikipedia link and I have already checked it for accuracy. & = Bitwise AND | = Bitwise OR ^ = Bitwise XOR (eXclusive OR) ! = Logical NOT …

Member Avatar for bobyx
0
142
Member Avatar for Bluefox815

I was writing a program and wanted to write a struct that's used to match an input string and print a corresponding output. However, I ran into a very unexpected problem. This code gave me the compile error below. [code] #ifndef MATCH_H #define MATCH_H #define TOTAL_WORD_PAIRS 2 typedef struct { …

Member Avatar for Bluefox815
0
305
Member Avatar for cokaznsyco72

[url]http://www.go4expert.com/forums/showthread.php?t=19110[/url] The above link should help. To make google searching easier, the spreadsheets you are talking about are a part of ODF, or Open Document Format. Putting ODF in your search ought to help ;) EDIT: After you've researched a bit, I think the link below could help you further. …

Member Avatar for cokaznsyco72
0
109
Member Avatar for beforetheyknew

[QUOTE=beforetheyknew;1242749]Hi guys, I'm doing a dissertation on the skills necessary to do a CS degree, within which I'm going to design a website that assesses prospective CS students and their ability to cope with the harder more technical and analytical skills. I'm basically just looking for some experienced perspectives, brainstorming …

Member Avatar for Bluefox815
0
709
Member Avatar for HappyTron
Member Avatar for mcodesmart

On a personal note, I'd recommend the buffer method for good practice because the dynamic memory method makes it very easy for a memory leak to occur.

Member Avatar for Bluefox815
0
197
Member Avatar for icewolf

fopen should allow you to open the file for reading, but will not open it for writing. Note that if you try to open the file for writing, it WILL NOT return a null file, but as soon as you try to write to it the program will crash. That …

Member Avatar for Bluefox815
0
187
Member Avatar for Bluefox815

Hi, I was trying to make an OpenGL/SDL program with 3D graphics, but the code I've written doesn't work. I made an OpenGL/SDL program that displays in 2D with no problems, so I think my OpenGL code is the problem and not my SDL code (I'm not entirely sure though). …

Member Avatar for Bluefox815
0
71
Member Avatar for shadwickman

I've had problems getting the LOOP instruction to work with NASM before. You might want to try replacing your loop instruction with this code: [code=asm] SUB ECX, 1 CMP ECX, 0 JG fib [/code]

Member Avatar for shadwickman
0
2K

The End.