User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 455,998 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,841 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 48
Search took 0.01 seconds.
Posts Made By: manzoor
Forum: C++ Oct 8th, 2008
Replies: 7
Views: 158
Posted By manzoor
Re: pointer

i mean the variable name to which it is pointing ?? is it possible ?


I have a struct, it contains two data members and a pointer to char.


I created two objects of the struct and initialized all...
Forum: C++ Oct 8th, 2008
Replies: 7
Views: 158
Posted By manzoor
pointer

How do you know to what a pointer is pointing to ?
Forum: C++ Aug 13th, 2008
Replies: 1
Views: 237
Posted By manzoor
infinite loop due to incorrect input

#include <iostream>
#include <vector>

using namespace std;

// global constants
const char X = 'X';
const char O = 'O';
const char EMPTY = ' ';
const char TIE = 'T';
Forum: C++ Aug 12th, 2008
Replies: 2
Views: 450
Posted By manzoor
do... while loop problem

#include <iostream>
#include <vector>

using namespace std;

// global constants
const char X = 'X';
const char O = 'O';
const char EMPTY = ' ';
const char TIE = 'T';
Forum: Geeks' Lounge Jul 27th, 2008
Replies: 247
Views: 15,467
Posted By manzoor
Re: What is your Favorite Quote?

Nothing will work unless you do
Forum: C++ Jul 27th, 2008
Replies: 5
Views: 691
Posted By manzoor
Re: compile vc6 project

Thanks Ancient Dragon
Forum: C++ Jul 27th, 2008
Replies: 5
Views: 691
Posted By manzoor
Re: compile vc6 project

Why do you mean by that ? You mean that the client files can only be compiled with the test project ? I have compiled the test and service project successfully. Is thats it ?
Forum: C++ Jul 26th, 2008
Replies: 5
Views: 691
Posted By manzoor
Re: compile vc6 project

Do you mean that I do not the need to compile the client files ? I have successfully compiled the test project.

And about the service source files, what about them, when compiling them I get some...
Forum: C++ Jul 26th, 2008
Replies: 5
Views: 691
Posted By manzoor
compile vc6 project

http://www.codeproject.com/KB/cpp/loggerservice.aspx

In the link above there are three project files, I get it to compile the test project (the last file) with no errors and warnings. But can't...
Forum: C++ Jul 24th, 2008
Replies: 9
Views: 335
Posted By manzoor
Re: how to compile projects ?

Ok thanks I might look into downloading the trial version.

Isn't there any other solution? Downloading a 3.79 GB File with my connection will take days
Forum: C++ Jul 24th, 2008
Replies: 9
Views: 335
Posted By manzoor
Re: how to compile projects ?

So what compiler should I use then?
Forum: C++ Jul 24th, 2008
Replies: 9
Views: 335
Posted By manzoor
Re: how to compile projects ?

I meant the project in the link

How would you compile that ?
Forum: C++ Jul 24th, 2008
Replies: 9
Views: 335
Posted By manzoor
how to compile projects ?

How do you compile this whole project in Visual C++ Express Edition ? The link is below ?

http://www.codeproject.com/KB/cpp/loggerservice.aspx

Will simply creating a new project and inserting all...
Forum: C++ Jun 29th, 2008
Replies: 5
Views: 383
Posted By manzoor
Re: while & if statement

//Using while

#include <iostream>
using namespace std;

void CountDown(int nValue)
{
cout << nValue << endl;
while (nValue != 0)
{
Forum: C++ Jun 29th, 2008
Replies: 5
Views: 383
Posted By manzoor
while & if statement

I have two programs both do the same thing but both when run gave totally different results. I am sure there is a lesson to learn from this and that will teach you a fundamental difference between...
Forum: C++ Jun 28th, 2008
Replies: 3
Views: 212
Posted By manzoor
Re: min and maximum

thanks that solved the problem
Forum: C++ Jun 28th, 2008
Replies: 3
Views: 212
Posted By manzoor
min and maximum

how do you find the minimum and maximum number from a given set of numbers without sorting them

?

i have the code but the it isnt working properly

#include<iostream>
#include<conio.h>
using...
Forum: Windows NT / 2000 / XP / 2003 May 28th, 2008
Replies: 3
Views: 252
Posted By manzoor
Re: wipe out hdd

cant i just remove the ddo ??
dynamic drive overlay ? its the discwizard
Forum: Windows NT / 2000 / XP / 2003 May 27th, 2008
Replies: 3
Views: 252
Posted By manzoor
wipe out hdd

i have discwizard installed in my new hdd but theres something wrong with it thats either corrupted or not installed completely by the technician
so i am having problems installing xp

now how do i...
Forum: Legacy and Other Languages May 13th, 2008
Replies: 3
Views: 716
Posted By manzoor
Re: gwbasic <>

hey how to add a new line in a saved gwbasic programm ??
Forum: Legacy and Other Languages May 13th, 2008
Replies: 3
Views: 716
Posted By manzoor
Re: gwbasic <>

i got it guys it means not equal
Forum: Legacy and Other Languages May 13th, 2008
Replies: 3
Views: 716
Posted By manzoor
gwbasic <>

what does the <> mean in the following GWBASIC programm ?

190 FOR C=2 TO N
200 LET I=C-1
210 WHILE I <> 0
220 IF ASN(I)>ASN(I+1) THEN SWAP ASN(I), ASN(I+1) : I=I-1...
Forum: C++ May 12th, 2008
Replies: 2
Views: 198
Posted By manzoor
Re: separate integer into individual units

i know there are lot of ways but how to do it with integer division and modulus operator ?

sorry to mention that
Forum: C++ May 12th, 2008
Replies: 2
Views: 198
Posted By manzoor
separate integer into individual units

ok in what way do you separate the digits from a given int ??


like if the int is 987987

how do you separate them in to 9 8 7 9 8 7 ???

is there any function to do this ?
Forum: C++ May 12th, 2008
Replies: 8
Views: 603
Posted By manzoor
Re: smallest largest

n1337 your solution might fit :p thanks
everyone else
Forum: C++ May 11th, 2008
Replies: 8
Views: 603
Posted By manzoor
Re: smallest largest

i know there are other ways but can you tell me is there any other way to find it using relational operators and if statement only not else statement without checking each number in if statement...
Forum: C++ May 11th, 2008
Replies: 8
Views: 603
Posted By manzoor
smallest largest

how do you find the smallest and largest number of 3 numbers

without using logical operators and else statement only if and relational operator ?

is there any other way without checking every...
Forum: C++ May 10th, 2008
Replies: 7
Views: 555
Posted By manzoor
Re: limitation of arrays

so does a vector eliminates the problem ?
Forum: eCommerce May 10th, 2008
Replies: 6
Views: 991
Posted By manzoor
Re: building an online store

what do you mean by online store would you sell your own products or affliates from ebay, amazon ?
Forum: C++ May 10th, 2008
Replies: 7
Views: 555
Posted By manzoor
limitation of arrays

What are some limitations imposed by a fixed array size?

can you please tell me

A limitation of arrays is that they have fixed lengths. what does it means ?
Forum: C++ May 9th, 2008
Replies: 5
Views: 615
Posted By manzoor
Re: guess the number

edward is greaat btw who is he ? :D
Forum: C++ May 7th, 2008
Replies: 5
Views: 615
Posted By manzoor
guess the number

hi can you tell me the anatomy of game in which the player picks a number and the computer must guess what it is.
no code just give me a hint or two :D
Forum: C++ Mar 9th, 2008
Replies: 3
Views: 777
Posted By manzoor
Re: selection sort algorithm

please explain what problems are you facing ?
Forum: Website Reviews Mar 9th, 2008
Replies: 4
Views: 406
Posted By manzoor
review my site

hi please give me feedbacks on my site thanks

webhostingyes.com
Forum: eCommerce Mar 2nd, 2008
Replies: 0
Views: 536
Posted By manzoor
what websites sell?

what kind of websites sell easily

affliates,programming help, games etc which one selll easily on ebay ??????
Forum: C++ Feb 28th, 2008
Replies: 1
Views: 175
Posted By manzoor
expression ? how is it performed

frequency[ grades[ 2 ] / 10 ]++;


here assume that grades[2] includes 87, divided by 10 it equals to 8.7, which equals to frequency[8.7]++;

so is the decimal removed ?

or is it rounded to 9 ?
Forum: C++ Feb 26th, 2008
Replies: 3
Views: 324
Posted By manzoor
Re: what it means ?

thanks yall

the problem is solved

the problem was that 15 is both a multiple of 3 and 5 so the program I had made sum 15 twice thats why my answer was incorrect thanks
Forum: C++ Feb 26th, 2008
Replies: 3
Views: 324
Posted By manzoor
what it means ?

Hi i have to complete a program which do the following

If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.

Find the sum...
Forum: PHP Feb 19th, 2008
Replies: 1
Views: 230
Posted By manzoor
need to create a web

Hi I need to create c++ help website in which I'll add tutorials and snippets
So what do I need to learn to let the users add their own snippets and tutorials
also add a phpbb forum

a webbsite like...
Forum: C++ Jan 12th, 2008
Replies: 4
Views: 565
Posted By manzoor
Re: plz can someone help me?? code for employee's hours worked

you cannot declare an int with spaces

int hours % hoursweek;

the identifier is illegal in c++ it shouldn't contain spaces
Showing results 1 to 40 of 48

 
All times are GMT -4. The time now is 9:46 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC