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
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for icasta13

at least explain what are you trying to achieve with this program.. firstly your function readlist() after returning first value will not return anything.. if you want to print the list just write [CODE] void ReadList(int Array[], int size) { int list=0; for(int N=0; N<size; N++) { list= Array[N]; cout …

Member Avatar for icasta13
0
278
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

see the precedence of the operator "<<" is from right 2 left whereas the output is delivered from left 2 right. take it this way - [B]int x=10; cout<<++x(3)<<" "<<++x(2)<<" "<<++x(1)<<endl;[/B] here all increment operators are pre-increment and since precedence of the operator "<<" is from right 2 left => …

Member Avatar for kvprajapati
0
141

The End.