Forum: C Aug 26th, 2004 |
| Replies: 34 Views: 8,324 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... |
Forum: C++ Aug 26th, 2004 |
| Replies: 6 Views: 2,868 there is a problem regarding the following program..i mean my coding does not work with it..i will post the program and the coding for it.can anyone of you tell me whats wrong with it.thanks.....
... |
Forum: C++ Aug 26th, 2004 |
| Replies: 6 Views: 2,868 i will post the code for the above question.but it does not work
#include<iostream.h>
int main()
{
for(int x=1;x<10;x++){
for(int y=1;y<10;y++){
cout<<"*";
cout<<"\n";
} |
Forum: C++ Aug 25th, 2004 |
| Replies: 6 Views: 2,868 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... |
Forum: Computer Science Aug 24th, 2004 |
| Replies: 3 Views: 3,128 I am having a difficulty when understanding and writing c++ programs .can anyone give me a solution,
thanks :cry: |
Forum: C++ Aug 24th, 2004 |
| Replies: 3 Views: 3,116 i need some help in understanding to write the following programs.please describe how you think of doing it..
1)
*
**
***
****
*****
******
******* |
Forum: C Aug 23rd, 2004 |
| Replies: 1 Views: 9,700 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
... |