Search:

Type: Posts; User: silent

Search: Search took 0.00 seconds.

  1. Thread: help pls

    by silent
    Replies
    5
    Views
    1,150

    how 2 change thread title?

    how 2 change thread title?
  2. Thread: help pls

    by silent
    Replies
    5
    Views
    1,150

    help pls

    #include <iostream>
    #include <iomanip>
    #include <conio.h>
    #include <math.h>
    #include <string>
    #include <ctype.h>
    #include <fstream>

    using namespace std;
    void password_generator();
  3. Thread: help pls

    by silent
    Replies
    2
    Views
    1,074

    help pls

    char name[]="abcdefghijklmnopqrstuvwxyz0123456789";
    char password[6];
    srand (time(NULL));
    for (int i=0;i<6;i++)
    {password[i]=name[rand()%37];
    }
    cout<<"Your...
  4. Replies
    6
    Views
    1,101

    the output become invalid name entry invalid name...

    the output become invalid name entry invalid name entry valid no matter wat i typed... wat is code tags?
  5. Replies
    6
    Views
    1,101

    anyone can help?beginner nd help...

    cout<<"Please enter your name:";
    cin>>user.name;
    int i=0;
    char name[i];
    while (name[i])
    {
    if (isalpha(name[i])) cout<<"Valid",name[i];
    else cout<< "Invalid name...
  6. Replies
    1
    Views
    3,812

    beginner nd help

    can i know how to want the user to insert only words without numbers and vice verse?
    i want limit it to insert either words or numbers or else ask the user to reenter the value

    cout<<"Please...
  7. Thread: need help

    by silent
    Replies
    5
    Views
    4,772

    can i know how to want the user to insert only...

    can i know how to want the user to insert only words without numbers and vice verse?
  8. Thread: need help

    by silent
    Replies
    5
    Views
    4,772

    erm, i actually creating a program that want user...

    erm, i actually creating a program that want user detail to generate password
  9. Thread: need help

    by silent
    Replies
    5
    Views
    4,772

    need help

    char *name,*nickname,*hobby;
    cout<<"Please enter your name:";
    cin>>name;
    cout<<"Please enter your nick name:";
    cin>>nickname;
    cout<<"Please enter your hobby:";
    cin>>hobby;

    anything wrong...
Results 1 to 9 of 9