Forum: C Aug 5th, 2009 |
| Replies: 4 Views: 258 Thank you ,daviddoria , But can you give me a hint 'bout how to run the program .... I mean how to pass the parameter to the function?? I run the program and whatever I do I get the out put of
... |
Forum: C Aug 5th, 2009 |
| Replies: 4 Views: 258 Compiling the following problem with visual studio 2000 gives the errors:
temp.obj : error LNK2001: unresolved external symbol "void __cdecl ungetch(int)" (?ungetch@@YAXH@Z)
temp.obj : error... |
Forum: PHP Jun 30th, 2009 |
| Replies: 2 Views: 302 do you have a google account already?? great then... just goto
reader.google.com
then click add a subscription and paste the feed link(the link you get using "copy link location" over ther the... |
Forum: Getting Started and Choosing a Distro May 11th, 2009 |
| Replies: 11 Views: 1,186 Why dont you just order an ubuntu online ?? |
Forum: Java Mar 25th, 2009 |
| Replies: 5 Views: 264 Sorry my bad ... after tweaking a bit got the solution...
As it turned out to be that constructors cant handle String[] properly .. so changed the code a bit
Packet(int op_code, int count,... |
Forum: Java Mar 25th, 2009 |
| Replies: 5 Views: 264 Running this file returns the error:
Exception in thread "main" java.lang.NullPointerException
at Packet.<init>(test.java:20)
at test.main(test.java:46)
here:
line 20 :... |
Forum: PHP Mar 16th, 2009 |
| Replies: 1 Views: 561 I've figured it out....
At the index.phtml the code will be
Hello World! A random number is : <?php echo $this->randomNumber; ?> |
Forum: PHP Mar 16th, 2009 |
| Replies: 1 Views: 561 Hi, I am a beginner for the zend framework. I have viewed the screencast from the zend site and followed them. The summary of the screencasts are:
application
controllers
... |
Forum: C++ Mar 12th, 2009 |
| Replies: 19 Views: 1,129 or rather
#include<stdlib.h>
if (answer == 'n')
exit(0); |
Forum: C Mar 12th, 2009 |
| Replies: 2 Views: 285 Do yourself a favor. Don't use turbo C. Use Visual C++(express edition is great) or Code::Blocks instead. Code::Blocks is small and free |
Forum: Getting Started and Choosing a Distro Mar 12th, 2009 |
| Replies: 8 Views: 2,101 OK... it is somewhat a security expose :P .As i use my pc 4 myself i was not concerned about it. But if you want to use it only for yourself then i guess u have to change the owner to yourself. then... |
Forum: Geeks' Lounge Mar 11th, 2009 |
| Replies: 146 Views: 30,084 You've got another one :D .... I am somewhat of a recent addition in this club.. but I have covered several series... FMA, Death Note, Gundam Seed, Code Geass, Naruto (and Shippuuden), Bleach,... |
Forum: C Mar 10th, 2009 |
| Replies: 10 Views: 900 Read the replies carefily:
//--print the array to check values--
i=0;
j=0;
for (i=0; i<1; i++)
{
for (j=0; j<nrow; j++) |
Forum: C Mar 10th, 2009 |
| Replies: 10 Views: 900 No no..... u are supposed to use #define only for a convenient way to set the dimensions of the 2D array. As you see the dimensions 16 and 192 are used in a lots of places. If you are to change any... |
Forum: Getting Started and Choosing a Distro Mar 10th, 2009 |
| Replies: 8 Views: 2,101 u can try by changing the permissions
$ su
# cd /var
# chmod 777 www
then anyone can read/write from this folder |
Forum: C Mar 10th, 2009 |
| Replies: 10 Views: 900 Because you are printing them in float format , they are printing default 6 digits after the point. To solve this change the printing line to :
printf("%.0f\n", a[i][j]);
then after the... |
Forum: Getting Started and Choosing a Distro Mar 10th, 2009 |
| Replies: 7 Views: 1,322 Using the live CD boot Ubuntu and go to desktop. Then open terminal(from accessories) and type following:
// Spaces are crucial be careful about them where they are and where they are not.
sudo... |
Forum: Game Development Sep 14th, 2008 |
| Replies: 4 Views: 1,127 Hallow shooshooo,
I learned that u and ur team is going to make games using C# language.Actually there are a lots of path basis on how many work load can u and ur team can hold.For C# there is an... |
Forum: Oracle Sep 8th, 2008 |
| Replies: 0 Views: 1,257 In my oracle, there is a table :
locations(
city varchar2(10),
country varchar2(10));
executing the following script results the desired column.
<?php
$link =... |
Forum: Oracle Sep 8th, 2008 |
| Replies: 2 Views: 2,177 thanx for the link. it was plenty helpful. just for clarification just install tha apache and zend core(chapter 7) and it will be done.(i was too busy working with php install, which wont be... |
Forum: Oracle Aug 23rd, 2008 |
| Replies: 2 Views: 2,177 i am using oracle 10g along with php 5. the problem is i cannot connect with oracle database from php with the function oci_connect. i can understand that this is because of the way php is... |