Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~88.0K People Reached
About Me

Student

Member Avatar for samaru

Is everyone familiar with this game? Just reply with the first word that comes to your mind when you think of the last word posted. You can't respond to the post with a comment, just the word that comes to your mind. It can only be a word or a …

Member Avatar for Salem
2
52K
Member Avatar for aminura

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 ethernet card and network interface card..! So that guy replied that ethernet card's different in sense that …

Member Avatar for alang_z
0
399
Member Avatar for Yzk
Member Avatar for OurNation

Ok this is a game I juast thought of and don't know if its been done before or if it will work well but bare with me. Ok I start by stating a sentence. The next person will change [B]one[/B] word and repost the sentence. The new sentence has to …

Member Avatar for torham
0
14K
Member Avatar for aminura

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 yet-- 1. [CODE]class A { public: int a; int b; };[/CODE] …

Member Avatar for charleen
0
266
Member Avatar for aminura

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 kb. How should I get rid of this trojan horse? Thanks.

Member Avatar for gerbil
0
82
Member Avatar for aminura

Hi.. I have to make a program in c++ for plotting a sine curve..using arrays ..in horizontal direction not vertical .. can I have an alogarithm or just a hint how to go on making ...thanks :)

Member Avatar for WaltP
-1
3K
Member Avatar for aminura

Hey! I just wanted to know that if there is any builtin function in c++ that converts a decimal number into binary number??

Member Avatar for Narue
0
312
Member Avatar for aminura

Can somebody please tell what does this function prototype indicate-- [CODE]const char* fun( char const *,const char*);[/CODE] Is it some thing like that the return type would always be constant char ? And what is the difference in the two declarations-- char const* and const char*? Thanks

Member Avatar for aminura
0
111
Member Avatar for aminura

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... :?:

Member Avatar for aminura
0
132
Member Avatar for aminura

In the following code I am giving an int value to class using type casting-- [CODE]#include<iostream> using namespace std; class A { int a; float b; public: A() { a=0; b=0; } A(int m) { a=m; cout<<"\n values are"<<a<<endl<<b; } }; void main() { A a1; a1=1; }[/CODE] The members …

Member Avatar for SpS
0
213
Member Avatar for simon126

Program a student uses the computer to figure out his average in this class. As long as he enters grades between 0 and 100, it computes the average. If he enters -1 for a grade, it stops computing and prints out the average. I need help please someone help me …

Member Avatar for Lerner
0
256
Member Avatar for SpS

Can we find the smallest of three integers, without using any of the comparison operators....logic please

Member Avatar for SpS
0
311
Member Avatar for ashwinperti

void main() { float a = 0.7; if(a < 0.7) printf("YES"); else printf("NO); } But this function always prints NO. And when it is made Greater than 0.7 It shows YES Why is it so with float variable Ashwin Perti

Member Avatar for Balachandran
0
165
Member Avatar for SpS

Plz look at this code [code]#include<iostream.h> int x=0; int main() { int x=1; { int x=2; cout<<::x; cout<<x; } return 0; }[/code]<< moderator edit: added [url=http://www.daniweb.com/techtalkforums/misc.php?do=bbcode#code][co[u][/u]de][/co[u][/u]de][/url] tags >> does anybody know how can i access main local variable x, from inside the block, without using pointers or references?

Member Avatar for Narue
0
211
Member Avatar for aminura

[CODE]#include<iostream.h> int main() { enum flag{ x=1,y=2,z=4,e=8}; flag f2=flag(99); // out of range return 0; }[/CODE] In this code the range of flag is 0:15 but it still compiles when 99 is entered which is out of range!!

Member Avatar for aminura
0
368
Member Avatar for aminura

I have a doubt regarding constructor in this program-- [CODE]include<iostream.h> class A { private: int a; float b; A(int j) { a=j; cout<<"\n a is"<<a; } public: A() { cout<<"\n Default constructor invoked\n"; a++; b=0; } A(int j,float i) { a=j; b=i; cout<<"\n value"<<a<<"and"<<b<<endl; } public: void show() { int …

Member Avatar for Narue
0
395
Member Avatar for aminura

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 has Linksys wireless G PCI adapter and my laptop is centrino..both having win xp as operating systems. I …

0
41
Member Avatar for aminura

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 connected through a gateway.I have got linksys wireless router 54 mbps b/g.

0
103
Member Avatar for aminura

Hey all my computer is currently messed up with this about:blank virus..it's residing in.. res://%43%3a%5c%57%49%4e%44%4f%57%53%5c%53%59%53%54%45%4d%5c%47%41%46%4b%47%2e%44%4c%4c/ Can anybody decode this..there's this site which decodes but I don't remember the name.. I am also copying the logfile too-- Running processes: C:\WINDOWS\SYSTEM\KERNEL32.DLL C:\WINDOWS\SYSTEM\MSGSRV32.EXE C:\WINDOWS\SYSTEM\mmtask.tsk C:\WINDOWS\SYSTEM\MPREXE.EXE C:\WINDOWS\SYSTEM\MSTASK.EXE C:\WINDOWS\SYSTEM\STIMON.EXE C:\WINDOWS\EXPLORER.EXE C:\WINDOWS\RUNDLL32.EXE C:\WINDOWS\TASKMON.EXE C:\WINDOWS\SYSTEM\SYSTRAY.EXE C:\WINDOWS\SYSTEM\RESTORE\STMGR.EXE C:\PROGRAM …

Member Avatar for crunchie
0
204
Member Avatar for aminura

I am learning C++ and I have done Pointers..but I am not able to understand it well. I know what is it but I am not able to understand exactly why do we use rather where do we use it. :confused: .basically it's the practical implication of it which I …

Member Avatar for Dave Sinkula
0
102
Member Avatar for aminura

Hi.. I have to make a program in c++ for plotting a sine curve..using arrays ..taking x axis in horizontal direction and y axis in vertical direction... Please help me out in making this program :) thanks

Member Avatar for alc6379
0
106