String manipulation functions are really important and we often find ourselves needing them while coding in C++. High-level languages like C# and Java etc. provide such functions through methods of a string class. However, they are not inherently present in C++.
Here are some of the more frequently used string related functions. They are pretty self-explanatory. All of them are independent functions....
Sunday, August 31, 2014
Thursday, August 28, 2014
PHP 7: What To Expect? Features and Expected Release Date
Unknown
Thursday, August 28, 2014
No comments

We are not completely sure about the exact feature set of version 7 of PHP. There are some features that we can talk about since they are being implemented in PHP 7. The rest we can only speculate based on reasonable guesses.
1. PHPNG to Become Basis for PHP 7
PHPNG is an improved PHP codebase...
C++ - Take Screenshot of the Windows Desktop using GDI+
Unknown
Thursday, August 28, 2014
No comments

Here is the complete C++ source code for taking screenshot in Windows:
#include <iostream>
#include <string>
#include <windows.h>
#include <gdiplus.h>
#pragma comment(lib, "gdiplus.lib")
using namespace std;
using namespace Gdiplus;
int GetEncoderClsid(WCHAR *format,...
C++ - Get File Size in KB/MB/GB Format using stat()
Unknown
Thursday, August 28, 2014
No comments

This code uses stat() function of the built-in sys/stat.h header file, to get the size of a file.
The size is then passed to convertSize function which converts the file size to a suitable unit and returns the result as a string value.
You might want to know that stat(), however, isn't...
Subscribe to:
Posts (Atom)