Forum: Viruses, Spyware and other Nasties Aug 28th, 2007 |
| Replies: 1 Views: 1,033 Computer infected Generic3.nsr Hi
My computer got infected by trojan horse Generic3.nsr , it was detected by AVG antivirus. It's converted all the folders that I opened since my computer got infected into application files of 37... |
Forum: PCI and Add-In Cards Mar 21st, 2006 |
| Replies: 5 Views: 4,587 NIC/ Ethernet Hello!
Well, today there was a technical presentation by some students in my school so there was this discussion about NIC's. So somebody came up with a question that what's the difference between... |
Forum: Posting Games Mar 13th, 2006 |
| Replies: 3,185 Views: 185,198 |
Forum: Posting Games Feb 8th, 2006 |
| Replies: 3,185 Views: 185,198 |
Forum: C++ Jan 21st, 2006 |
| Replies: 5 Views: 1,901 Re: conversion to binary Thanks for the reply! I guess I would have to go through a tutorial of bitset classes to get an understanding of what it is and how it works..! :)
I would like to know what does this actually... |
Forum: C++ Jan 20th, 2006 |
| Replies: 5 Views: 1,901 conversion to binary Hey!
I just wanted to know that if there is any builtin function in c++ that converts a decimal number into binary number?? |
Forum: C++ Jan 4th, 2006 |
| Replies: 4 Views: 1,804 |
Forum: C++ Jan 4th, 2006 |
| Replies: 4 Views: 1,804 Re: Pointer and function Thanks for the reply.
I guess I haven't got this thing fully into my lazy brain! So does it actually mean that whatever the arguments maybe , the output can never be manipulated or I'll be always... |
Forum: C++ Jan 3rd, 2006 |
| Replies: 4 Views: 1,804 Pointer and function Can somebody please tell what does this function prototype indicate--
const char* fun( char const *,const char*);
Is it some thing like that the return type would always be constant char ? And what... |
Forum: C++ Dec 19th, 2005 |
| Replies: 3 Views: 4,176 Re: Viva questions Viva is kind of oral test we have over here in our school. These were the questions which I couldn't answer. I don't know about the first and the last question. But about arrays I do have some idea... |
Forum: Posting Games Dec 19th, 2005 |
| Replies: 7,557 Views: 457,504 |
Forum: C++ Dec 19th, 2005 |
| Replies: 3 Views: 4,176 Viva questions Well, today I had my C++ viva at my school..and I screwed it up!! The answers to this question which I was asked may be easy but I couldn't get it..Few questions of which I haven't got the answers... |
Forum: Posting Games Dec 16th, 2005 |
| Replies: 7,557 Views: 457,504 |
Forum: Posting Games Nov 25th, 2005 |
| Replies: 7,557 Views: 457,504 |
Forum: Posting Games Nov 8th, 2005 |
| Replies: 7,557 Views: 457,504 |
Forum: Posting Games Nov 6th, 2005 |
| Replies: 7,557 Views: 457,504 |
Forum: Posting Games Oct 27th, 2005 |
| Replies: 7,557 Views: 457,504 |
Forum: C Oct 27th, 2005 |
| Replies: 3 Views: 5,301 |
Forum: C Oct 27th, 2005 |
| Replies: 3 Views: 5,301 |
Forum: C Oct 27th, 2005 |
| Replies: 3 Views: 5,301 Type casting and type conversions Today I had an exam and in that there was a question to differentiate between type casting and type conversions...Are they actually different?? I always thought they were same... :?: |
Forum: Posting Games Oct 22nd, 2005 |
| Replies: 7,557 Views: 457,504 |
Forum: Posting Games Oct 20th, 2005 |
| Replies: 2,038 Views: 107,839 |
Forum: C++ Oct 19th, 2005 |
| Replies: 12 Views: 2,354 Re: Type casting you answered that ...regarding returning value.
Now I am little confused...since constructors don't return any value how does type casting using parameterised constructors work. Like in the program... |
Forum: C++ Oct 19th, 2005 |
| Replies: 12 Views: 2,354 Re: Type casting So is it like that the temporary object formed during the calling of parameterised constructor returns the value to the actual object?
#include<iostream>
using namespace std;
class A
{
public:
int... |
Forum: C++ Oct 19th, 2005 |
| Replies: 12 Views: 2,354 Re: Type casting I don't want to assign this value to b. My question is that because of default constructor b is initialized to 0 but after typecasting why doesn't it retain it's value zero..it changes to garbage... |
Forum: C++ Oct 19th, 2005 |
| Replies: 12 Views: 2,354 Type casting In the following code I am giving an int value to class using type casting--
#include<iostream>
using namespace std;
class A
{
int a;
float b;
public:
A() |
Forum: C++ Oct 11th, 2005 |
| Replies: 19 Views: 2,028 |
Forum: Posting Games Oct 9th, 2005 |
| Replies: 7,557 Views: 457,504 |
Forum: Posting Games Sep 27th, 2005 |
| Replies: 7,557 Views: 457,504 |
Forum: C++ Sep 27th, 2005 |
| Replies: 13 Views: 1,899 Re: substitue of comparison operators Is it actually possible? Because everything is relative so to find minimum or maximum we got to compare it with other and for that comparison operators have to show up? :confused: |
Forum: C++ Sep 25th, 2005 |
| Replies: 8 Views: 1,727 Re: Scope Problem What's the solution? I mean how do you access the variable inside the main from the inner block? |
Forum: C++ Sep 25th, 2005 |
| Replies: 5 Views: 2,069 Re: enum range Yes, I meant that very topic from the book. Thanks for the replies! |
Forum: C++ Sep 24th, 2005 |
| Replies: 5 Views: 2,069 Re: enum range Well, I tried this because this was given as an example in Bjarne Stroustrup's book..but I couldn't get the result he specified! |
Forum: C Sep 24th, 2005 |
| Replies: 3 Views: 1,042 Re: Why is it so? It prints "NO" because the condition you have given is a<0.7 not a<=0.7. Since a=0.7 it gives output as "NO" . |
Forum: C++ Sep 24th, 2005 |
| Replies: 5 Views: 2,069 enum range #include<iostream.h>
int main()
{
enum flag{ x=1,y=2,z=4,e=8};
flag f2=flag(99); // out of range
return 0;
}
In this code the range of flag is 0:15 but it still compiles when 99 is entered which... |
Forum: C++ Sep 22nd, 2005 |
| Replies: 13 Views: 1,590 Re: Doubts about constructor One more thing, I have never ever read about passing the arguments to the main()..
" int main(int argc, char* argv[]) "
I couldn't even find any relevant text regarding this..Can you please tell me... |
Forum: C++ Sep 22nd, 2005 |
| Replies: 13 Views: 1,590 Re: Doubts about constructor Thanks for the replies!
Narue>Why does it do this way in visual c++?
Because Turbo C++ is wrong and Visual C++ is right. Visual C++ is correctly parsing A(j) as a declaration of a variable of type A... |
Forum: C++ Sep 21st, 2005 |
| Replies: 13 Views: 1,590 Doubts about constructor I have a doubt regarding constructor in this program--
include<iostream.h>
class A
{
private:
int a;
float b;
A(int j)
{ |
Forum: Networking Hardware Configuration Aug 27th, 2005 |
| Replies: 0 Views: 1,218 Help with Ad hoc networking Hey!
Recently my wireless router stopped working due to some electrical trouble with it.So for the time being I was trying out ad hoc networking(My knowledge about this is really meager).My desktop... |
Forum: Networking Hardware Configuration Jun 19th, 2005 |
| Replies: 0 Views: 2,713 Setting up wireless network at home Hey!
I have a desktop computer(win xp) and a laptop(centrino-win xp pro).How can I setup a wireless network at home between these two so as to share internet which is again a cable network and is... |