User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 374,506 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 2,816 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 39 of 39
Search took 0.01 seconds.
Posts Made By: manzoor
Forum: C++ 1 Day Ago
Replies: 9
Views: 136
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++ 1 Day Ago
Replies: 9
Views: 136
Posted By manzoor
Re: how to compile projects ?

So what compiler should I use then?
Forum: C++ 1 Day Ago
Replies: 9
Views: 136
Posted By manzoor
Re: how to compile projects ?

I meant the project in the link

How would you compile that ?
Forum: C++ 1 Day Ago
Replies: 9
Views: 136
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++ 25 Days Ago
Replies: 5
Views: 179
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++ 25 Days Ago
Replies: 5
Views: 179
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++ 27 Days Ago
Replies: 3
Views: 144
Posted By manzoor
Re: min and maximum

thanks that solved the problem
Forum: C++ 27 Days Ago
Replies: 3
Views: 144
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: 159
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: 159
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: 547
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: 547
Posted By manzoor
Re: gwbasic <>

i got it guys it means not equal
Forum: Legacy and Other Languages May 13th, 2008
Replies: 3
Views: 547
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: 126
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: 126
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: 292
Posted By manzoor
Re: smallest largest

n1337 your solution might fit :p thanks
everyone else
Forum: C++ May 11th, 2008
Replies: 8
Views: 292
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: 292
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: 311
Posted By manzoor
Re: limitation of arrays

so does a vector eliminates the problem ?
Forum: eCommerce May 10th, 2008
Replies: 6
Views: 678
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: 311
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: 329
Posted By manzoor
Re: guess the number

edward is greaat btw who is he ? :D
Forum: C++ May 7th, 2008
Replies: 5
Views: 329
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: 485
Posted By manzoor
Re: selection sort algorithm

please explain what problems are you facing ?
Forum: Website Reviews Mar 9th, 2008
Replies: 4
Views: 314
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: 433
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: 135
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: 265
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: 265
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: 181
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: 483
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
Forum: C++ Jan 9th, 2008
Replies: 6
Views: 718
Posted By manzoor
Re: Quiz program

what would be the equivalent c++ code

since printf() is a c function I can;t understand it :)

would be nice if you tell me the c++ thanks
Forum: C++ Nov 13th, 2007
Replies: 4
Views: 1,887
Posted By manzoor
Scientific Notation

Hey how can i convert scientific notations ??

if i use float in my program

is it possible to change it ????

#include <iostream>
using namespace std;

int main()
Forum: C++ Nov 13th, 2007
Replies: 4
Views: 1,887
Posted By manzoor
Scientific notation

How to change numerical values from scientific notation to normal system (:P) in C++ if i used a float or double variable
Cuz i want decimals tthats why i used float but now its giving me the answer...
Forum: C++ Nov 12th, 2007
Replies: 4
Views: 268
Posted By manzoor
Re: Urgently Needed

Ali, this site have a policy of not to help some one unless you haven't done something your self..

First code your self then if you get into something wrong then the site will probably help you...
Forum: C++ Nov 12th, 2007
Replies: 9
Views: 954
Posted By manzoor
Re: Input error

Do i need to pass arguments in the cin.fail() function to check my input ?
Forum: C++ Nov 11th, 2007
Replies: 9
Views: 954
Posted By manzoor
Re: Input error

Can any one tell me which method should I use ???

Just tell me the function I'm not saying that do it for me
Forum: C++ Nov 11th, 2007
Replies: 9
Views: 954
Posted By manzoor
Re: Input error

But I have problem in the CelFunc()

Anyway I'm gonna check it out

The Problem is in the CelFunc(), there when it asks for a number, but instead of inputting a number if you input an alphabet then...
Forum: C++ Nov 11th, 2007
Replies: 9
Views: 954
Posted By manzoor
Help Input error

I coded a program its for temperature conversion its still not developed yet and I'm having a problem.

Here's the code:
/* Software Name = Temperature Converter Calculator...
Made by Manzoor...
Showing results 1 to 39 of 39

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