Search:

Type: Posts; User: jackar56

Search: Search took 0.01 seconds.

  1. That can be a definition or a declaration,...

    That can be a definition or a declaration, depending on what type T is:

    typedef void T();
    T t; // declaration of function "t"

    struct X {
    T t; // declaration of function "t".
    };

    typedef...
  2. Replies
    8
    Views
    6,952

    For both C and C++, I would recommend you to go...

    For both C and C++, I would recommend you to go for JanBask Training. It best explains every topic in a very simple way from basics while covering all the concepts. Also, you can practice questions...
  3. Replies
    5
    Views
    2,245

    You have write 32 line in your program is wrong,...

    You have write 32 line in your program is wrong, rectify that one only.
  4. Replies
    5
    Views
    1,092

    You can use c[i]= '\0' or simply c[i] = (char) 0....

    You can use c[i]= '\0' or simply c[i] = (char) 0.
    The null/empty char is simply a value of zero, but can also be represented as a character with an escaped zero.
Results 1 to 4 of 4