Search:

Type: Posts; User: maemec

Search: Search took 0.01 seconds.

  1. windlog is ???

    windlog is ???
  2. How actually is a derived class implementation on inheritance ?

    How actually is a derived class implementation on inheritance, as class is just abstract.
    E.g.

    class A {public: int x;};
    class B : public A {int y;};

    Does a B object instantly "realize"...
  3. that header file: mysql_connection.h not...

    that header file:
    mysql_connection.h

    not exist at all in directory in which the compiler being run
  4. Replies
    1
    Views
    4,143

    printf( ... follow fflush(stdout)

    What is printf( ... followed by fflush(stdout)
    printf("%" PRIu64 "\n", hunt ), fflush(stdout) ;

    supposed to mean
    What's that different to just

    printf("%" PRIu64 "\n", hunt );
    Thanks
  5. each string is surely always a char size

    each string is surely always a char size
  6. convert string of vector s, to char type

    How convert string of vector<string> s, to char type as using bits/stdc++.h ?



    #include <bits/stdc++.h>
    #include <iostream>

    char ch;
    vector<string> s;
  7. Doing Cross-compiled on MinGW is not supported ,...

    Doing Cross-compiled on MinGW is not supported , said author
  8. Default argument/parameter to be another previous one

    How to have a function default argument/parameter to be another previous argument value ?

    let's make the below illustration only really work


    char* function(char* a, int b, char** c = &a){

    ...
Results 1 to 8 of 9