No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
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 …
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 …
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 => …
The End.
sankalp_999