Search:

Type: Posts; User: lye85

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    799

    problem: char string[j] in if statement

    #include <stdio.h>
    #include <string.h>

    void main()
    {


    char string[200]="int main() { int x=10; int y=5; if (x==10) { printf('hello'); } else {;} }";

    int count;
  2. Replies
    2
    Views
    977

    thanks, strcmp works

    thanks, strcmp works
  3. Replies
    2
    Views
    977

    problem in struct string

    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>


    struct account {
    char AccName[20];
    int Age;
    double AccBalance;
    struct account *Next;
Results 1 to 3 of 3