Open Source

Hi,
How can i learn advanced commands of Ubuntu 14.04.01 LTS terminals commands??Is programming code in Linux(Ubunut) is different than Windows or Mac??

β€œHow can i learn advanced commands of Ubuntu 14.04.01 LTS terminals commands??”

  • To learn Linux commands you could use this.

β€œIs programming code in Linux(Ubunut) is different than Windows or Mac??”

  • The format specifiers of certain datatypes that you use in C/C++ may differ based on which platform you are using. Hence, some programmers use macros to define which specifier should be used for long long datatype:


    #ifdef _WIN32
    #  define LLD "%I64d"
    #else
    #  define LLD "%lld"
    #endif


1 Like