Forum: C++ 14 Hours Ago |
| Replies: 5 Views: 89 please use the code tags while posting ur code , besides instead of this
for(i=0;i<5;i++)
{if(i==2)
{
for(j=0;j<4;j++)
{BL[2][j]=0;
cout<<BL[2][j]<<" ";
} |
Forum: C++ 15 Hours Ago |
| Replies: 5 Views: 120 Well u got to show at least little bit of ur code to expect help , no ones gonna code for u from scratch.
for a start using double link list the below links can help u .... |
Forum: C++ 15 Hours Ago |
| Replies: 1 Views: 66 may be using switch , u can give me options on wat he want to do .
And then call the corresponding functions for the option he chooses. |
Forum: C++ 15 Hours Ago |
| Replies: 5 Views: 113 Well in that case , i would need to know what exactly ur trying to achieve ?
As far as i can see is that , this is a mere part of ur project or wat ever . it would be better if u could give a... |
Forum: C++ 15 Hours Ago |
| Replies: 5 Views: 89 this code is only to set the 3rd row to zero .
Can u post the new code where u have placed the code i wrote above ?
It would be easier for me to diagnose the problem. |
Forum: C++ 16 Hours Ago |
| Replies: 1 Views: 76 a similar problem has already been asked in this forum
http://www.daniweb.com/forums/thread238596.html
i guess u will find ur answer there |
Forum: C++ 16 Hours Ago |
| Replies: 1 Views: 99 Well i used to get linker errors often , when the paths weren't set.
Check ur directory ( in ur turbo c++ go to options and directories ,check whether u have given paths in include directories and... |
Forum: C++ 16 Hours Ago |
| Replies: 5 Views: 89 well in the code set i = 2 (for 3rd row ) and iterate only for the j column and set b[i][j] = 0 ;
i =2 ; // for the 3rd row
for( j = 0 j<5;j++)
b[i][j] = 0;
i guess this should work |
Forum: C++ 16 Hours Ago |
| Replies: 5 Views: 113 in ur turbo c== compiler , u can navigate to help (right mouse click) and then search for inp() and outp() .
There u will not only get a decent explanation but also an example with it.
I guess that... |
Forum: C++ 16 Hours Ago |
| Replies: 1 Views: 83 Well i guess u will get more apt answers in Qtforum (http://www.qtcentre.org/forum/)
It would be still efficient if ur familiar with python cuz , i have seen many nice applications which are built... |
Forum: C++ 19 Hours Ago |
| Replies: 2 Views: 128 Well help will only be provided if u could show your code ... we cannot do ur home work from scratch. |
Forum: C++ 19 Hours Ago |
| Replies: 2 Views: 95 In ur turbo C there exist a include folder which contains many header files , ur supposed to place the desired header file in that directory.
PS: For god sake stop using turbo , u have much better... |
Forum: C++ 21 Hours Ago |
| Replies: 2 Views: 108 The OP wants to check the existence of 0 in the number only if loop wont suffice , u will have to iterate within a while loop and keep finding the last significant number one after the another and... |
Forum: C++ 1 Day Ago |
| Replies: 5 Views: 127 ohh god , i completely forgot about that..................
Well initially i had used the numbers without the quotes and i was wondering why didnt it work , then i switched over ASCII codes for that... |
Forum: C++ 1 Day Ago |
| Replies: 5 Views: 127 Since u only want the numbers to be recovered , u must be aware of the ascii equivalent for the number
0 - 48
----------
----------
9 - 57
i suggest u make a char variable , fetch... |
Forum: PHP 5 Days Ago |
| Replies: 2 Views: 189 Ohh.... Common guys i need some help ..?
I did almost of wat i could think of , i would be glad if u could provide me with some guidance...
Ps: I am aware that i cannot post one after the... |
Forum: PHP 6 Days Ago |
| Replies: 2 Views: 189 In many of the forums i have observed that , we can re direct the page like
thanks for logging in u will be redirected in 5 secs
and eventually the 5 secs decreases to 0 and the page gets... |
Forum: C++ 7 Days Ago |
| Replies: 3 Views: 281 Well i guess , when it comes to WEB ; scripting languages like PHP can be more efficient than C++ , although i admit that i was astounded when i learned about blat , but i guess other scripting... |
Forum: C++ 7 Days Ago |
| Replies: 4 Views: 253 That was a nice link enlightening the procedure.
I would like to add more on it by saying that u could use matrix template library
http://www.osl.iu.edu/research/mtl/intro.php3
It might be... |
Forum: C++ 7 Days Ago |
| Replies: 4 Views: 290 I guess this link might help you .. as even i am interested in this field and i admit that i am a complete neophyte in this too...
http://www.tenouk.com/Module40c.html |
Forum: Network Security 7 Days Ago |
| Replies: 4 Views: 910 It would be better to first understand the basic of OSI layer and how things work in various levels..
Later i guess u gotto know about NIDS and NIPS systems (network intrusion detection / prevention... |
Forum: Getting Started and Choosing a Distro Sep 1st, 2009 |
| Replies: 0 Views: 660 Is there any distro which has pre built .
LAMP
JDK and the graphic some wat like Atlantis |
Forum: Java Aug 27th, 2009 |
| Replies: 4 Views: 244 Well is it a kinda of config we have to do to establish the connection.
I thought there wasnt any thing else to do |
Forum: PHP Aug 26th, 2009 |
| Replies: 5 Views: 317 Well i am complete navie in the field of java scripting ....
But seems like i have no choice but to learn it. |
Forum: PHP Aug 25th, 2009 |
| Replies: 5 Views: 317 i have currently 3 checkboxes.
But the thing is i only want 2 of them to b processed i.e
if check box 1 is checked then the 2 one must get blocked thus by preventing the user to check it.... |
Forum: Java Aug 25th, 2009 |
| Replies: 4 Views: 244 i have installed mysql , and JDK . I wrote the following code to test jdbc . But it didnt work
public class Test {
public static void main(String[] args) {
try {
... |
Forum: C++ Aug 23rd, 2009 |
| Replies: 7 Views: 236 ur welcome :) , once ur comfortable with this , u can also upgrade ur self to DIRECTX programming . That will take you to the epicenter of gaming . |
Forum: C++ Aug 23rd, 2009 |
| Replies: 3 Views: 165 here is the basic program which can print itself
#include<iostream>
int main ()
{
int c;
FILE *f = fopen (__FILE__, "r"); |
Forum: C++ Aug 23rd, 2009 |
| Replies: 7 Views: 236 Well recommend openGL , since its got more grpahic options and u will find much more help in that.
i guess these links might help u
http://www.tenouk.com/cncpluspluslibrary.html
... |
Forum: JavaScript / DHTML / AJAX Aug 21st, 2009 |
| Replies: 7 Views: 620 yeah , but i prefer to eliminate various exceptions in the client side itself , before processing it for the server side.
If i go wrong in the server side , the it also screws up the database plus... |
Forum: *nix Software Aug 19th, 2009 |
| Replies: 3 Views: 517 well i downloaded but how do i install those themes..?
the files are in some emerald extension. |
Forum: Java Aug 18th, 2009 |
| Replies: 4 Views: 334 well since i use netbeans IDE , whenever i mention any of the keywords belonging to java cryptography , they give a syntax error .
But the above code mentioned is working perfectly fine .... |
Forum: *nix Software Aug 18th, 2009 |
| Replies: 3 Views: 517 Well i am using fedora for a pretty long time and i am tired of the fedora looks
especially when i see ubuntus latest edition .
Are there any themes available or graphic packages which can enhance... |
Forum: PHP Aug 17th, 2009 |
| Replies: 7 Views: 519 sorry , i didnt mention this , but i tried that method also when i was getting parse error.
Well basically the parse error is in line 2
which is :
$checkbox1=$_REQUEST["checkbox1"];
this... |
Forum: PHP Aug 17th, 2009 |
| Replies: 7 Views: 519 sDjH .. kudos to you.
But the script is working properly when the check box is checked
but if its not , its giving me a parse error.
Notice: Undefined index: checkbox1 in... |
Forum: PHP Aug 16th, 2009 |
| Replies: 7 Views: 519 SDjh , well i am not quite getting in wat r u trying to tell.
can u quote a simple example on how a single check box is processed , may be i am lacking that part,
so i guess u don't use $_POST in... |
Forum: PHP Aug 16th, 2009 |
| Replies: 7 Views: 519 hello everyone ! ,
I am creating a form with various check boxes in it. The check boxes represent various type of workshop the person wants to attend.
i just dont know how to process the data in... |
Forum: Windows NT / 2000 / XP Aug 15th, 2009 |
| Replies: 4 Views: 262 and Wat kind of upgrade will that be..?
i mean will the aesthetics of the OS will better ? or wat else can i expect in that ? |
Forum: Windows NT / 2000 / XP Aug 15th, 2009 |
| Replies: 4 Views: 262 i am planning to upgrade my windows sp2 to sp3 .
But i already have fedora installed (dual OS ).
will my upgrade from sp2 to sp3 crash my fedora ? |
Forum: JavaScript / DHTML / AJAX Aug 14th, 2009 |
| Replies: 7 Views: 620 kudos to both essential and dukane for provodong me the answer.
but i have few doubts
1.wats the difference between
and
and |