- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
18 Posted Topics
Re: pars99 ... providing ACTUAL code [snippets], complilation commands and ACTUAL outputs will help, otherwise we are all guessing, its like ... """i have built a car but it doesn't quite work as expected, please help""" | |
Re: Jack_11, .. what's the relevance of the question vis your statement. semantics are important. http://www.oxforddictionaries.com/definition/english/legacy """ Denoting or relating to software or hardware that has been superseded but is difficult to replace because of its wide use.""" http://en.wikipedia.org/wiki/Timeline_of_programming_languages | |
Re: if txtSearch.Text is freeform then you are stuffed. you assume (from the code above) that txtSearch.Text follows a specific pattern , ie derived from .... 'name+age+score+birthdate+gender+civilstatus+citizenship+contactnumber+address+email' what happens if the freeform text isn't in that pattern ? .... example ... 'birthdate+gender+address+email+age+contactnumber' recommend you tailor the search capability to match individual … | |
Re: please submit your code so it can be reviewed, otherwise we are all guessing ... | |
Re: traconsulting, recommend you type the following into your favorite web search engine (two distinct and separate searches) what is antivirus software what is spyware come back with questions once you've read some stuff :-) | |
Re: other than the fact there's no loop ! the program terminates when it gets to the end what is 'raw_input()' being assigned to ? did you try stepping through this with a debugger ? .... | |
Re: this is totally inadequate request for help. i suggest you put as much time and effort into a request to make it as clear/concise as possible in order that those you expect to give assistance are empowered to do so. | |
Re: #linux centric .. # #read the man pages regarding your complier and profiler #on my linux system fpc is the pascal compiler and gprof the profiler. #build it as a standalone executable then run it fpc -pg homework.pas time ./homework Input n:5000 real 0m2.072s user 0m0.000s sys 0m0.000s # # … | |
Re: given that this code is almost c, what have you actually done in order to translate -, the best way to accrue knowledge is to experience it for yourself. hints ... namespace ... can be replaced by #include <stdio.h> cout - can be replaced by printf( .... ) why don't … | |
Re: here's a trivial example based on linux .... Desktop:~/code/scripts$ cat sal 23 45000 33 54000 Desktop:~/code/scripts$ cat des 23 manager 33 director Desktop:~/code/scripts$ join des sal 23 manager 45000 33 director 54000 | |
Re: yes, have you done ANY research into this .... a basic web search query returns 000's of potential links http://uk.mathworks.com/help/matlab/using-java-libraries-in-matlab.html | |
Re: can you post the code (snippet) please, that will set context and enable responses. | |
Re: had done any research into this yourself ? http://www.stoimen.com/blog/2010/07/16/friday-algorithms-a-data-structure-javascript-stack/ | |
Re: in general you would not use udp to transmit in a 'streaming' type mode, particularly outside of your locahost, udp does not guarantee delivery nor packet order - you can write code on top of udp to do handshaking ... to aid with reliability , it really depends on how … | |
Re: http://lmgtfy.com/?q=sqlite+c+programming+tutorial http://www.tutorialspoint.com/sqlite/sqlite_c_cpp.htm |
The End.