]]>What is "##" string in C codehttp://www.shnenglu.com/scorpio/archive/2012/06/08/177471.htmlApollo FangApollo FangFri, 08 Jun 2012 02:42:00 GMThttp://www.shnenglu.com/scorpio/archive/2012/06/08/177471.htmlhttp://www.shnenglu.com/scorpio/comments/177471.htmlhttp://www.shnenglu.com/scorpio/archive/2012/06/08/177471.html#Feedback0http://www.shnenglu.com/scorpio/comments/commentRss/177471.htmlhttp://www.shnenglu.com/scorpio/services/trackbacks/177471.htmlSee code below(quoting ffmpeg source code)
]]>How to update or install pthread manual reference on Linuxhttp://www.shnenglu.com/scorpio/archive/2011/10/27/159215.htmlApollo FangApollo FangThu, 27 Oct 2011 05:28:00 GMThttp://www.shnenglu.com/scorpio/archive/2011/10/27/159215.htmlhttp://www.shnenglu.com/scorpio/comments/159215.htmlhttp://www.shnenglu.com/scorpio/archive/2011/10/27/159215.html#Feedback0http://www.shnenglu.com/scorpio/comments/commentRss/159215.htmlhttp://www.shnenglu.com/scorpio/services/trackbacks/159215.html If you want to install the manual reference about pthread, execute the following command:
]]>About C/C++ Data Typehttp://www.shnenglu.com/scorpio/archive/2011/10/25/159060.htmlApollo FangApollo FangTue, 25 Oct 2011 09:28:00 GMThttp://www.shnenglu.com/scorpio/archive/2011/10/25/159060.htmlhttp://www.shnenglu.com/scorpio/comments/159060.htmlhttp://www.shnenglu.com/scorpio/archive/2011/10/25/159060.html#Feedback0http://www.shnenglu.com/scorpio/comments/commentRss/159060.htmlhttp://www.shnenglu.com/scorpio/services/trackbacks/159060.html 1) int Integer 2) int*A pointer point to an Integer 3) int**A pointer point to a pointer what point to an Integer 4) int* arr[N]An array that each element is a pointer point to an Integer 5) int(*arr)[N] A pointer point to an array that its each element is an Integer and it have N elements. 6) int (*fun)(int) A pointer point to a function what with an integer parameter and with an integer returning. 7) int (*fun[N])(int) An array that have N elements and each element is a pointer point to a point that point to a type of function that have an integer parameter and with an integer returning. Maybe understand (4) type just like this : int*[N] arr; It means "arr"'s type is int*[]. And how to catch the meaning of int*[]? At first it's an array, and each element of this array is a pointer point to an integer. And can understand (5) type just like this : int[N]* arr; It means "arr"'s type is int[]*. That's to show that this type is a pointer and this pointer point to an integer array its size is N. It means this variable value named "fun" and its type Well, the above are so complex, and we should follow the KISS principle that is Keep It Simple, Stupid. Did you catch it ??
]]>How To Disable "_CRT_SECURE_NO_WARNINGS" Warningshttp://www.shnenglu.com/scorpio/archive/2011/10/25/159059.htmlApollo FangApollo FangTue, 25 Oct 2011 09:26:00 GMThttp://www.shnenglu.com/scorpio/archive/2011/10/25/159059.htmlhttp://www.shnenglu.com/scorpio/comments/159059.htmlhttp://www.shnenglu.com/scorpio/archive/2011/10/25/159059.html#Feedback0http://www.shnenglu.com/scorpio/comments/commentRss/159059.htmlhttp://www.shnenglu.com/scorpio/services/trackbacks/159059.html While you using MS Visual Studio, there are always "_CRT_SECURE_NO_WARNINGS" warnings appeared, like bellow:
"warning C4996: 'strerror': This function or variable may be unsafe. Using strerror_s instead."
How to disable this kind deprecation? Do like bellow (VS2010):