Suppose integer is stored as 4 bytes (For those who are using DOS based compilers such as C++ 3.0 , integer is 2 bytes) then a variable x ...
Wednesday, 31 January 2018
"SSL" (Transport Layer) means "Secure Sockets Layer". This was coined by the inventors of the first versions of the p...
Tuesday, 30 January 2018
Declaration: char * strstr ( const char * string1 , const char * string2 ) Headerfile: string.h Returns: returns a pointe...
Monday, 29 January 2018
Enumeration in C
JobNews4U
22:38
User defined data type enum keyword enum week {mon, tues, wed, thur, fri, sat, sun}; enum week day = wed; //Here day is the va...
Thursday, 25 January 2018
· const char* is a mutable pointer to an immutable character/string. You cannot change the contents of the location(s) this p...