Search:

Type: Posts; User: csc_paradise28

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    2,162

    but why? i just would like to know about...

    but why? i just would like to know about this..... programmers are supposed to do any program!!!
  2. Replies
    3
    Views
    2,162

    Curiousity!

    .. well.. i would just like to ask something..
    can any programmer make a hack program? or it needs an experts to do such an incredible program?!
    .... ? :rolleyes:
  3. Replies
    2
    Views
    833

    Arrays!!!

    :confused: If we have this :


    #include <iostream.h>
    #include <stdlib.h>
    int main()
    {
    const int size=7;
    int a[size]={0};
    for( int i=1; i<600; i++)
  4. Replies
    26
    Views
    1,849

    i mean that if we have in any program this...

    i mean that if we have in any program this segment:


    int n=0;
    while(n){
    ++n;
    cout<<n;
    }

    i meant wut does the while(n) do in this case? hope you got it now:)...
  5. Replies
    26
    Views
    1,849

    while(0) means wut? and wut does it differ from...

    while(0) means wut? and wut does it differ from while(++n)?????
  6. Replies
    26
    Views
    1,849

    i didn't get it! :( in the while loop there z ...

    i didn't get it! :( in the while loop there z


    cout<<m<<" "<<n;

    if it runs then it sould print the values of both of them??? and if it runs wiit does while( 0) mean? and if replaced while(0)...
  7. Replies
    26
    Views
    1,849

    oh.. ok.. i got it perfectly well! bunch of...

    oh.. ok.. i got it perfectly well! bunch of thanks:D....
    but i want to make sure of something else depending on the example above;
    if we have this :


    int n=0, m=1;
    while(n)
    { ++n;
    m+=n;...
  8. Replies
    26
    Views
    1,849

    A Question!

    ... If we have this segment of a program:


    int x=5, i=0;
    do
    {
    i++;
    x--;
    } while(x || x--);
    cout<<i;
  9. Replies
    7
    Views
    1,292

    well yes.. i'm so sure... has...

    well yes.. i'm so sure... <iostream.h> has nothing to do with the errors i have :(.. and if i tried to use


    # include <iostream>
    using namespace std;

    it would tell me


    Compiling...
  10. Replies
    7
    Views
    1,292

    well yes.. i'm so sure... has...

    well yes.. i'm so sure... <iostream.h> has nothing to do with the errors i have :(.. and if i tried to use


    # include <iostream>
    using namespace std;

    it would tell me


    Compiling...
  11. Replies
    7
    Views
    1,292

    thnx alot for helpin' me! :) but about the ogic...

    thnx alot for helpin' me! :) but about the ogic of my program!! dont ask me! ask the programmer who wrote it.. cuz actually i was studyin' and i found this q in the homework i had to do!! so i tired...
  12. Replies
    7
    Views
    1,292

    Some help plz!

    Hello.. can anybody helps me? i'm trying to write a c++ program.. that does like this... enter a number like 123 and the program should read it in reverse... like 321!
    i did it.. but there z...
  13. Replies
    13
    Views
    1,913

    Hello! i'm a new programmer :$ and somehow i...

    Hello!
    i'm a new programmer :$ and somehow i have alot of problems!
    can anyone tells me when do we exactly use arrays of pointers? in which cases?
    and if .. for example... we have a program...
Results 1 to 13 of 13