No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
26 Posted Topics
Re: wat exactly do u mean by alternating sums using vectors?? | |
Re: if thats wat u want to do... jumbling up the letters of something then why dont u just transfer them to different arrays as u rquire and finish ur work of.. tht shudnt be difficult.. | |
Re: Have u got all the points on the projectile?? If so then simply incude graphics.h in your program and then read through a bit of the help.. Plotting of the points will be easy.. So i dont think u ll have trouble doing.. If u have any trouble get back … | |
Re: The use of ur structure seems fine... To input multiple contacts just put an infinite while loop to enclose ur switch statment... so u will quit whenever u click quit.. that way u can get rid of the restart command.. For searching... U should be storing ur contacts in an … | |
Re: its very difficult to explain how to make the game.. if u ve any doubts they can be solved easily.. it is about scanning ur matrix in which u re storing ur current board postions.. and for every scan get some parameters on the basis of which to define the … | |
Re: Why dont u return the value of i to ur parent function and then whenever u have to perform the operation pass i as a parameter to it?? | |
Re: hey.. What is ur purpose for knowing the computation time?? If its an ideal code then u will have to code directly in assembly to idealise ur coding.. compilers generally break an instruction in a standard manner.. e.g if u say 2*x it will multiply 2 by x and not … | |
Re: As far as possible try to allocate memory only when required and dont use static data structures.. if ur talking abt the resources of the comp.. then make a 32 bit program.. and not a dos based 16 bit one.. | |
Re: u can get lotsa source codes on [url]www.planetsourcecode.com[/url] for free | |
Re: u cant assign an element at each position as u r doing.. u doing it like this rite..?? a[3]="a"; pls post the code.. the part where u re passing the parameter u have to receive a pointer.. then everything should be fixed i think.. anyway better u post the code.. … | |
hey.. could someone give me some good resources on how to implement and use dialog boxes in windows applications.. | |
Re: yeah.. i think this is the forum where ppl shud try out some stuff and then come and solve their problemsif any.. its not a place to get ur homework done.. | |
I would like some help regarding multithreading... i want to know what exactly happens when i start a new thread... i.e how it affects the variables etc. in the program... one query i have is what happens if i start 2 threads starting with the same function.. will their running … | |
i am writing a program.. in that i am needed to represent an array using pointers only..(its a constraint i ve to work with).. the prob i am facing can be shown by this small program.. pls help me rectify with [code]#include <stdio.h> #include <conio.h> void main() { char a[4],*b; … | |
Re: i ll give u a fn or the gcd of 2 nos.. [code]int gcd(int x,int y) { if ( y>x ) swap(x,y); while ( y!=0 ) { temp=y; y=x-y; x=temp; if ( y>x ) swap(x,y); } return x; }[/code]<< moderator edit: added [url=http://www.daniweb.com/techtalkforums/misc.php?do=bbcode#code][co[u][/u]de][/co[u][/u]de][/url] tags and formatting; added missing semicolon >> … | |
Re: hey wat exactly is your trouble u ve got all ur formulas rite i suppose then where is the difficulty | |
Re: visual studio .net 2003 shud be gr8... i ve been programming on that.. but if u re just learning to program then advice u better start off with turbo c or borland c..or c++.. it ll be much better.. | |
Hey Anyone has any idea how to convert from any data type to strings.. so that i may use the winsock send functions for sending data.. as only strings can be sent in that.. i need to send structures .. so have to convert them.. | |
Re: u can try out some sample programs on [url]www.planetsourcecode.com[/url] can find something in that most probs.. | |
Re: hey according to me the program crashing should be a different reason as i have included a cpp file in programs and run them without error.. post the problematic code.. | |
Re: yeah the switch statment shud solve all ur probs.. for any source code u want i think the best site is [url]www.planetsourcecode.com[/url] u ll get everything in tht site.. | |
Re: c++.net should be able to use all the headers of vc++.. | |
Re: i really think it ll be mch easier for you to work with a 2D array.. in case u r using a 1D array u ll have to do some computations to find out which positions to search for.. that should not be very difficult.. just read below.. consider that … | |
hey i would like to know if there is anyway i can send an object or a structure directly using any winsock2 function.. its mighty difficult to convert to a string and send as required by WSASend and send functions.. | |
I am writing a windows program.. in that i ve to do one job and the other only if the user tells me to do it and then i ll interuppt the first one.. if i create a messagebox for one i.e the user input it waits till what the … | |
I am trying to develop a basic communicating link using windows sockets in visual studio.net2003... but it is showing an lnk2001 error.. is it necessary that have to get the platform SDK and install it before i can use winsock2.h???? |
The End.