Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
About Me

I am a high school student. I have c++ programing as a part of my course.I find c++ interesting but a little difficult at times.I try not to give up when faced with challenges but when all else fails i seek help from my teachers and the daniweb threads..

Interests
programming reading (fiction , motivational) listening to music (more of alternative.. i am linkin park…
PC Specs
i have an amd athlon 64-bit processor, with a modest 2 gb ram and windows 7 for my desktop and a sony…
Favorite Forums
Member Avatar for icasta13

could someone help me, i dont know how to show the results... [CODE]#include <iostream> #include <fstream> using namespace std; int ReadList(int Array[], int N) { int list=0; for(N=0; N<10; N++) { list= Array[N]; } return list; } void Avgs (int Array[], int N, int &Ave, int &AveP, int &AveN) { …

Member Avatar for icasta13
0
271
Member Avatar for sankalp_999

i have written a program in c++ using the concept of file handling. this program is about managing a basic electronic hardware store stock and showing the sales report. i am not able to understand why the [B]contents of my file are not being displayed, modified, deleted, or even printing …

Member Avatar for sankalp_999
0
2K
Member Avatar for nida afaq

Hi, there is a simple code,but i cant understand the output: [CODE]#include<iostream.h> #include<conio.h> void main() { clrscr(); int x=10; cout<<++x<<" "<<++x<<" "<<++x<<endl; x=10; cout<<x++<<" "<<x++<<" "<<x++<<endl; getch(); }[/CODE] output: 13 12 11 12 11 10

Member Avatar for kvprajapati
0
137