No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
Re: [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 … | |
Re: 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, … | |
Re: [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 … | |
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 { … | |
Re: [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. … | |
Re: [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 … | |
Re: EDIT: Didn't see the problem was solved, apologies. | |
Re: 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. | |
Re: 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 … | |
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). … | |
Re: 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] |
The End.