- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
5 Posted Topics
I am having a difficulty when understanding and writing c++ programs .can anyone give me a solution, thanks :cry: | |
Re: if you are using void main()function at the beginning do not use return 0 at the end. if you use int main()function at the startup use return 0 at the the end.. #include<iostream.h> int main() { int x=5; cout<<x<<endl; //print 5 cout<<x++<<endl;// the 5 is print first .then the 1 … | |
I am having a problem regarding nesting loops.for example for(int x=1;x<10;x++){ for(int y=1;y<x;y++) i want to know what this statement means. I posted a question to the forum but the moderator has unfortunately taken it off. I need some help regarding the concepts of the program given below.just give me … | |
i need some help in understanding to write the following programs.please describe how you think of doing it.. 1) * ** *** **** ***** ****** ******* 2)******* ****** ***** **** *** ** * thank you..... | |
i dont understand about how to use the reference and value parameters in a program. I also need to know how to pass an array to a function.give me the reasons with examples .. thank you kalinga.... |
The End.