Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
15
Posts with Downvotes
9
Downvoting Members
9
3 Commented Posts
~4K People Reached
About Me

Loves programming in particular C, C++.
Then java and C#,
bit of HTML, CSS and AJAX coding,
Loves life and want to be loved.

Interests
Programming, Reading Books, Watching Movies ( mostly Hindi ), Making Friends, Gaming, critics wrong…
PC Specs
Intel 2.4 GB on Gigabyte G31 Motherboard with 2 GB RAM; Windows XP with SP3 and all latest updates.
Favorite Tags
Member Avatar for androidz

hello!! i want to learn how to make games like web browser games..for example like evony or other online games..what do i need to learn?..please give me some guide so that i can study with it and practice. what is the first step should i take? i have backgrounds in …

Member Avatar for androidz
0
123
Member Avatar for Glass_Joe

[ATTACH=RIGHT]16877[/ATTACH]It’s been a long time coming. [I]StarCraft II: Wings of Liberty[/I] is here, and in similar fashion, my review of it has finally arrived. It’s tough to completely take in just everything [I]Wings of Liberty[/I] offers in a day or a week, and treated as such, we have a review …

Member Avatar for JamieLynnSEO
2
660
Member Avatar for Purrenhage

2 week in programming I am learning to program in C++. I started off with 26 error, and now I am down to 1. I just dont understand what it is asking for in the errors. Can somebody help me out? I have tried to look on the internet but …

Member Avatar for manojwali
0
150
Member Avatar for ﻼim
Member Avatar for vaultdweller123
0
228
Member Avatar for Rahul.menon

how to print the below triangle without using arrays a a b a e i a b c d a e i o u

Member Avatar for Ancient Dragon
0
131
Member Avatar for dcforshaw

Hi all, I am currently working analysising silicon pixel detectors for the LHC at my university. One thing i have to do is to find clusters of signal in a silicon pixel detector. I have directory of macros which handles the data and getting it ready, not important. My goals …

Member Avatar for dcforshaw
0
182
Member Avatar for manojwali

Name - Manoj Kumar Wali Nickname - Man, MKW Height - 5' 7" Weight - 54KG Hair - Black with o Eyes - 2 of 'em Location - Udhampur, India Age - 32 Hobbies - Programming, Programming, and Programming Relationship Status - single Fav Music - oldies Education - B.E. …

Member Avatar for ﻼim
0
181
Member Avatar for delle

I wrote a little test program to try to figure out some problems I am having in another program I'm working on. Code: [CODE]# include <iostream> # include <string> using namespace std; void ahoy(string nameEntered) { cout << "Ahoy, " << nameEntered << "!" << endl; } int main() { …

Member Avatar for Duki
0
202
Member Avatar for grahf23

Hi, i'm supposed to write a function, countGrade that takes in the Grade and find the number of students that have this grade. This value is returned to the calling program. The function prototype is int countGrade(char). Currently all i have written is this. Seem like there's something wrong with …

Member Avatar for grahf23
0
155
Member Avatar for manojwali

Any Free and feature-rich Web- Authorization tool for Web-Publication. The Tool should support templates and should be according to latest w3c specifications, please help. I have signed at geocities and tripod Web-hosting site for free accounts. Should I use the in-built tools or upload my designed website. ( Any Suggestions …

Member Avatar for manojwali
0
117
Member Avatar for xshinichix

TURBO C ++ HELP! INTERATIVE STATEMENT Im a beginner so please help me. USING FOR LOOP: write a program that will display the following pattern, given the value of n. example: of n=4 output: 1234 123 12 1

Member Avatar for xshinichix
0
370
Member Avatar for LuciaP

Hello! First of all, excuse me for my bad english! Im new in C++ (altough i have to implement a mix between c and c++) and im having troubles trying to do a few things... struct nodo { Program * prog; int FB; nodo * izq; nodo * der; } …

Member Avatar for manojwali
0
112
Member Avatar for alex k
Member Avatar for manojwali
0
120
Member Avatar for johnsign11

Hello friends Can anyone tell me Why and How to use vector in C++ ???? Making a sudoko game in c++

Member Avatar for manojwali
0
152
Member Avatar for cnmsg007

The only error stated is at "N_showdata.N_enterData();" which says "error C2660: 'NomineeData::N_enterData' : function does not take 0 arguments" [CODE]#include<iostream> #include<conio.h> #include<string> using namespace std; class MemberData { private: int ID ; char Name[60]; char Add[60]; char Tel[15]; public: void enterData(); void showData(void); }; void MemberData::enterData() { cout << "Please …

Member Avatar for manojwali
-1
77
Member Avatar for xLeonex

hi ive developed a code to sort 3 numbers and pick out the middle one. the numbers are distinct. #include<iostream> using namespace std; int main( ) { int X, Y, Z; cout<<"please 1st number "; cin>>X; cout<<"please 2nd number "; cin>>Y; cout<<"please 3rd number "; cin>>Z; if (Z>X>Y) (Y>X>Z) cout<<"this …

Member Avatar for xLeonex
0
115
Member Avatar for rahul8590

[CODE] #include <stdio.h> #include <unistd.h> int main() { while(1) { fprintf(stdout,"hello-out"); fprintf(stderr,"hello-err"); sleep(1); } return 0; } [/CODE] why is that i am getting heelo-err instead of hello-out

Member Avatar for Narue
0
136
Member Avatar for macrogeek

Im a beginner level programmer in C and want to know how can I use malloc or calloc functions for dynamic memory allocation without typecasting...?

Member Avatar for manojwali
0
209
Member Avatar for Sinaru

Take a look at this program. [CODE] #include <iostream> using namespace std; struct Node { int data; Node* link; Node() { data = 0; link = NULL; } }; void destroy(Node* &p) { Node* pre; while(p !=NULL) { pre = p; p = p->link; delete pre; // When running for …

Member Avatar for manojwali
0
582
Member Avatar for illuminatus89

Through my knowledge, I know that by declaring a variable as 'const', its stored in read only memory and at the same time I found that a const variable's value can be changed using pointers. How is it possible?

Member Avatar for manojwali
0
98
Member Avatar for onako

I'm implementing an application that should decide whether to move computations to external memory, depending on RAM memory consumption. Is there a C++ function that computes my maximal RAM memory capacity, and the amount of currently consumed portion (in MB, perhaps). Any other suggestions on how to obtain these values …

Member Avatar for manojwali
0
286