- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 3
i am a computer science student but have been interested in the subject for 7+ years
- Interests
- gaming, soccer, reading, and writing
28 Posted Topics
I would like to create an array of objects. I am not sure as to how this would work as my searching through javascript does not give an address of identifier. I can only use javascript as the site is being designed for local use. if it did I would … | |
I would like to make a navigation bar that spans alot of pages but only links to a few main ones and do not want to copy and paste this bar to each page. is there a way to make a document that contains my navigation bar and just place … | |
using a linked list in C++ i am attempting to delete a middle node from a series, and then put the series back together. ex: N1 -> N2 -> N3 N1 -> N3 delete N2 but i am getting a segmentation fault (core dumped) at the point in the code … | |
I am attempting to recompile a C program i programmed on linux. These are the errors i recieve: c:\users\dsu\dropbox\codes\c\gamereedtucker\main.c(28): error C2275: 'FILE' : illegal use of this type as an expression c:\program files\microsoft visual studio 10.0\vc\include\stdio.h(66) : see declaration of 'FILE' c:\users\dsu\dropbox\codes\c\gamereedtucker\main.c(28): error C2065: 'sy' : undeclared identifier c:\users\dsu\dropbox\codes\c\gamereedtucker\main.c(29): error … | |
Re: the .NET library but that is pretty much the same as a library they are asking you to install. though installing a library is not the same as installing software. a libray is uncompiled software. | |
Re: this may be a bit dated but I would suggest using the[ Game Maker](http://www.yoyogames.com/) program(it is free online). it is a point and click way to making games. There is a scripting language that is like visual basic and plenty of tutorials for it. | |
I was attempting to recreate the fibonacci sequence and I made a working code but my code will refuse to use a number above 12. any ideas what is wrong? #include <stdio.h> #include <stdlib.h> int main() { const int user = 1; long int fib[user]; int i = 0; int … | |
Re: you should learn some common white spacing to help make the code readable. but this may help out some problems. i believe your code was getting confused with where each if statement was ending. using {} can help specify that problem and make things easier to read. 1. your first … | |
I am having problems with pointers and i am getting two errors saying "invalid argument type of 'unary *'" float getProfit(float* bushels, float price) { int i = 0; for(i = 0; i < 20; i++); { *bushels[i] = *(bushels[i]*price); } return 0; } any ideas on a solution? i … | |
Re: most people won't do your code for you, share your code so far and we will help find errors | |
I have made a code and when I compile it I recieve the error saying "/tmp/cc9UNQMJ.o:in function bulbasaur: pokemon.c(.text+0x1074):undefined refrence to print collect2:ld returned 1 exit status" anyone have any idea what this could mean? (i will place full code after work) | |
I have been very interested in getting a masters in computer science, not just because it looks good but it will give me more experience and more time for job hunting. I learned from my uncle that he actually got a free ride for his masters and phd in areo … | |
I am working on a website and I am currently trying to make it look more proffesional with the help of CSS(I am writing this all myself, not using a generator). Recently I installed something that would make a more professional. The only problem is that whenever I look at … | |
what is a good program to write HTML in? i am looking at Note Pad ++ right now since i will need it for lau soon but i would like some opions here first. | |
i am just trying basic C++ GUI and i ran this code from a tutorial site. [CODE] #include <windows.h> int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR pszCmdLine, int iCmdShow) { MessageBox(NULL, "Hello World", "Testing", 0); return 0; } [/CODE] when i run it, it executes and makes a animation of … | |
Re: you should look for a graphics SDK to make your game playable, find one with alot of tutorials so that you have more information sources to build on | |
has any tried this? i am probably getting Pro version before the price rises again for a small team i have(4 people), but i want to hear some second opinions so there is less of a chance it is bad. | |
i am trying to use my program to move north, east, south, west using the first letter of the full word. though, whenever i run my code and get to this point my coordinates do not update and i remain stuck at 4,6(or 5,6). can anyone help me with this … | |
currently i am writing a text based RPG but, when i call for the fight my rand() either does not seed each time or it glitches to continuously gets the "Boar". if you could please take a look at it and see if the problem is in the coding, i … | |
this questions may be vague, but how many functions can you open up through function calls without ending the function. and example would be... [CODE] int FunctionOne(); int FunctionTwo(); int FunctionThree(); int FunctionFour(); int FunctionFive(); int main() { FunctionOne(); return 0; } int FunctionOne() { FunctionTwo; return 0; } int … | |
i am trying to review what C++ stuff i have learned last year before high school starts, but the code i am writing does not run properly after i compile it. the code compiles the code does not execute. the code does not execute after Recruit() runs C_Name() to get … | |
Re: just make int's and use a cout to print them them to the screen | |
Re: [QUOTE=piecykoos;1157263]hi, can anyone help me with my assignment, I'm new in c++ and any help will be much appreciated: "You must design, implement and test a simple board game. The design should follow object oriented principles and use the UML tools that were introduced earlier in the module. The coding … | |
i am trying to create a massive list of letters and numbers using this program. but for some reason i keep getting an error (sometimes this occurs, sometimes it doesn't) [B]error PRJ0002 : Error result 31 returned from 'C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\mt.exe'.[/B] i also get(sometimes this occurs, sometimes it doesn't) [B]Unhandled … | |
i am having a few errors compiling a code in visual C++ with my jumble word code, can anyone help? [CODE]//word jumble #include <iostream> #include <string.h> #include <cstdlib> #include <ctime> using namspace std; int main() { enum fields{WORD, HINT, NUM_FIELDS}; const int NUM_WORDS = 5; const string WORDS[NUM_WORDS][NUM_FIELDS] = { … | |
Re: [QUOTE=xcarbonx;1127208]i have tried to enter the setprecision in already like this: cout << "The mean is: " << setprecision(3) << mean << endl; the mean output still displays 4[/QUOTE] i do my set precision like... [CODE] cout.setf(fixed::ios); cout.setprecision(3); cout<<"the mean is: "<<mean<<endl; [/CODE] this should make it only 3, to … | |
Re: i had the same problem, i used safari but could never load it, try acessing it on internet explorer or maybe firefox |
The End.