Forum: Geeks' Lounge May 16th, 2008 |
| Replies: 53 Views: 5,771 Quote from wikipedia
there are traffic lights in many places. But at times they do not work because of power failures or some other reason. There are many crossings where traffic lights are yet... |
Forum: IT Professionals' Lounge May 11th, 2008 |
| Replies: 134 Views: 17,012 Google for the term social engineers or search wikipedia, I did not post a link because I thought it might violate forum rules.
It is the art of fooling someone to believe something you are not.... |
Forum: C++ May 11th, 2008 |
| Replies: 10 Views: 697 What is there you cannot understand? If you expect someone to hand out the answers then you are wrong. |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 1,630 Here are a few errors I can see
int List::sumOfNodes();
remove the ';' at the end.
while( currentPtr ! = null) |
Forum: C++ Apr 24th, 2008 |
| Replies: 15 Views: 1,613 That depends on how you want the love percentage to be calculated and if you want it to be the same for a given set of names. For example you can say that the love percentage will be higher if the... |
Forum: C Apr 14th, 2008 |
| Replies: 3 Views: 4,819 inport() and outport() functions do work if you have opened the port. I use a software called Userport to do the same. Alternatively you could try inportb() and outportb(). Here is a tutorial on... |
Forum: Geeks' Lounge Mar 30th, 2008 |
| Replies: 50 Views: 4,596 The only songs that make me angry are the ones people play at middle of the night at high volume. |
Forum: C++ Feb 28th, 2008 |
| Replies: 16 Views: 1,248 Okay here is another shorter alternative.
#include<iostream.h>
int eig(int num)
{
if(num<10)
{
return num; |