Posts
 
Reputation
Joined
Last Seen
Ranked #25
Strength to Increase Rep
+15
Strength to Decrease Rep
-3
92% Quality Score
Upvotes Received
2K
Posts with Upvotes
2K
Upvoting Members
536
Downvotes Received
210
Posts with Downvotes
194
Downvoting Members
48
350 Commented Posts
~1.96M People Reached
Favorite Tags
c++ x 2K
c x 2K
vb.net x 200
java x 88
php x 77
Member Avatar for Saqlainz

Printing multiple integers can be done easily!! **WRONG : Console.WriteLine("%d * %d = %d",c,a,b);** *** RIGHT AND PERFECT:: Console.WriteLine("{0} * {1} = {2}",c,a,b);***

Member Avatar for Bunker
-3
159
Member Avatar for abdallah_adiga
Member Avatar for gil.nickson

hi, please help me how can i convert this C++ code to C source code ... please help ..... this is the URL http://cppforschool.com/project/super-market-billing.html i dont understand this though please help ... :(((((((

Member Avatar for f200196
1
39K
Member Avatar for london-G

Hello, I am not sure if this is the correct place to post this... I would like your general opinions on this: When testing a software with different functionalities, is it a good thing to state the number of test case to be prepared initially for each functions? Like we …

Member Avatar for phinisdo
0
231
Member Avatar for Quinton_1
Member Avatar for alamu

please give the program for sorting a linked list without affecting the original value

Member Avatar for 4rajgopal
0
1K
Member Avatar for awfootball7

Hey guys I'm having trouble figuring out how to calculate the standard divination of an array in Java. As you can see I have already calculated the mean, and I know that at the end I will have to divide by the sample size minus 1 (n-1) and square that …

Member Avatar for woo_1
0
18K
Member Avatar for Dani

As many of you know, DaniWeb was hit by a Google algorithm update back in November 2012 and we lost about 50% of our search traffic. In investigating the issue, I discovered that DaniWeb, in addition to most other programming forums out there, all lost their google traffic to [StackOverflow](http://www.stackoverflow.com). …

Member Avatar for j.khurram
11
5K
Member Avatar for kanebt

The title pretty much says it all. I cant find an option in my control panel? Thanks [fake signature removed]

Member Avatar for Олег_9
3
3K
Member Avatar for Tekmaven

There are a lot of members of Daniweb who run their own websites, and even many members who run SEO firms. I've given SEO a lot of thought, and I can only conclude this: [b]SEO is totally unethical. At it's foundation, all you are doing is artificially effecting your search …

Member Avatar for dhirajkumar123
4
4K
Member Avatar for coroll

Hi, I want to find all the words(scabble words) that can be made out of given set of letters. ex: abnana results: a aa ab an baa ban banana na nab How could i achieve this? Do i need a binary tree? Plz some one help me...

Member Avatar for JamesCherrill
0
2K
Member Avatar for Bob

[B]Intro[/B] This tutorial provides a brief introduction to the random number functions that come as part of the C++ standard library, namely rand() and srand(). [b]rand() and RAND_MAX [/b] The C++ standard library includes a pseudo random number generator for generating random numbers. In order to use it we need …

Member Avatar for JamesCherrill
3
52K
Member Avatar for ddanbe

Yes, WPF. The learning curve is steep, but what amazing things you can do with it! Look at this hexagon window for instance. Serves no purpose in a business environment I guess, but in a gaming situation it could work. For me, it was just fun to get this up …

Member Avatar for deceptikon
0
932
Member Avatar for KushMishra

Hello All, I need to develope an application to receive POP3 emails automatically at regular intervals. I am totally a newbie to this one and need your kind help. The application should fetch emails using some service that would run in the background. So basically I need 2 things (I …

Member Avatar for Elpat14
1
2K
Member Avatar for Nether_1

I'm writing a code that will save the username of a user when a button (in this case button1) gets pressed. I save it to a file called info.txt, and i use fstream in order to save it. Currently I'm running into the issue that, while i can open up …

Member Avatar for Nether_1
0
2K
Member Avatar for vvsmario

I can not solve this problem. I should write a code for PROGRAM in C, which finds the longest word of the text enter by the keyboard. Plaese help me!

Member Avatar for Busuioc
-1
4K
Member Avatar for chris ig

I have been trying to compile this code but all my attempts failed, can someone please explain to me what's the meaning of randvar in this code: int upper_range = 255; for(int i=0; i<256; i++){ upper_range -= i; int delete_list_entry(temp_head, randvar); }

Member Avatar for deceptikon
0
148
Member Avatar for G_Waddell

Hi, I've recently "inherited" a part built project from a developer who as left our company. He had decided to use Entity Framework but I am finding it to be unstable and slow. I periodically have to reimport objects and stored procedures from the database as the model gets corrupted. …

Member Avatar for Aleksey_2
0
4K
Member Avatar for Devon_4

void change(char* input){ memset(input, 'a', strlen(input)); } int main(){ char* p = "foo"; cout << p << endl; change(p); cout << p << endl; }

Member Avatar for deceptikon
0
157
Member Avatar for Violet_82

Hi guys, I wonder if you can help me. As I’m now doing java development as a profession now, I’ve realized that I’m a little weak when it comes to fix, modify and understand code within large applications, and, needless to say, I need to find a way to get …

Member Avatar for Violet_82
0
412
Member Avatar for MukeshZ

Hi, I want to read csv (Comma Separated Values) file content in VB.Net I want read entire values in file store in the fixed blocks ( say array ) Please guide me for reading the csv file content in VB.Net. Also how to get count of the data in csv …

Member Avatar for deceptikon
0
19K
Member Avatar for azeez_2

Write a program, which will imitate an ATM machine. The program will ask for a password. Assume that only password 123456 is accepted. If the password is correct, display the following menu Menu ATAM Bank ABC 1. View Balance 2. Deposit 3. Withdraw 4. Transfer Fund Your choice : _______ …

Member Avatar for thines01
0
613
Member Avatar for ddanbe

Where can I buy a T-shirt with the DaniWeb logo? Or a sticker to pimp up my car? Or is this not feasible?

Member Avatar for Dani
0
297
Member Avatar for AssertNull

The bad-word filter didn't add the asterisks. I did. I got passed a link to this "Computer Language" by a parent who asked me if I knew anything about it and was this a worthwhile endeavor for her teenage son to learn. I assumed by the name that it was …

Member Avatar for stephenlangton
0
456
Member Avatar for Prasad_4

Consider the following C code snippet: char *sentence = NULL; strcpy(sentence, "Helloworld"); printf("%s", sentence); is the code segment correct or error. If correct what is the output? 1. Error 1. Helloworld 1. NuII,Helloworld 1. None of the above

Member Avatar for Reverend Jim
-2
1K
Member Avatar for rupali

How to calculate time complexity of any algorithm or program .... need help on this..

Member Avatar for jamie_13
2
48K
Member Avatar for clarkkent021

Hi, I am trying to learn OOP with c++ with the help of Turbo C++ version 3.0 and "C++ Primer Plus" by stephen prata. according to the book, the NEW convention for including the iostream header file in c++ is in the following way: #include<iostream> but it causes an error …

Member Avatar for Aatulya
0
2K
Member Avatar for d1e9v85

hi guys ... this is a bubble sort program that i made [code=cplusplus] #include<iostream> using namespace std; #include<iomanip> using std::setw; int main() { const int arraysize = 10; int Bubble[ arraysize ]; cout << "Please enter 10 integers: " << endl; for ( int i = 0; i < arraysize; …

Member Avatar for White_2
1
757
Member Avatar for daino

Would anyone know how to put user input into a Char Array. I've provided the code below It doesn't work so I've tried many variations like making char wrd as char wrd[20] but still nothing. I think I'm missing a fundamental point here. All I want to do is have …

Member Avatar for deceptikon
0
42K
Member Avatar for anny**

hello !! i want to ask that in below program if i want to change cin and cout into printf and scanf then how colud i?Becuse when iam changing my program in cin and cout it is not running :( [CODE]#include <iostream> #include <iomanip> int main () { long number; …

Member Avatar for helo_1
0
4K