Found 7197 Articles for C++

How to debug a core in C/C++?

Ankith Reddy
Updated on 24-Jun-2020 06:17:58

491 Views

A process dumps core when it is terminated by the operating system due to a fault in the program. The most typical reason this occurs is that the program accessed an invalid pointer value like NULL or some value out of its memory area. As part of that process, the operating system tries to write our information to a file to allow us to analyze what happened.This core can be used as follows to diagnose and debug our program −The core is dumped to the /proc/sys/kernel directory by default. To debug a core, the program must be compiled with the ... Read More

What does the explicit keyword mean in C++?

Nikitha N
Updated on 24-Jun-2020 06:18:59

3K+ Views

The explicit keyword in C++ is used to mark constructors to not implicitly convert types. For example, if you have a class Foo −class Foo { public:     Foo(int n); // allocates n bytes to the Foo object     Foo(const char *p); // initialize object with char *p };Now if you tryFoo mystring = 'x';The char 'x' is implicitly converted to int and then will call the Foo(int) constructor. But this is not what was intended. So to prevent such conditions and make the code less error-prone, define the constructor as explicit −Example class Foo {    public:   ... Read More

How to convert an int to string in C++?

George John
Updated on 24-Jun-2020 06:19:44

3K+ Views

You can use the itoa function from C to convert an int to string.  example#include int main() {    int a = 10;    char *intStr = itoa(a);    string str = string(intStr);    cout

How can I get the list of files in a directory using C/C++?

Chandu yadav
Updated on 27-Jan-2020 12:32:32

2K+ Views

Standard C++ doesn't provide a way to do this. You could use the system command to initialize the ls command as follows −Example#include int main () {    char command[50] = "ls -l";    system(command);    return 0; }OutputThis will give the output −-rwxrwxrwx 1 root root  9728 Feb 25 20:51 a.out -rwxrwxrwx 1 root root   131 Feb 25 20:44 hello.cpp -rwxrwxrwx 1 root root   243 Sep  7 13:09 hello.py -rwxrwxrwx 1 root root 33198 Jan  7 11:42 hello.o drwxrwxrwx 0 root root   512 Oct  1 21:40 hydeout -rwxrwxrwx 1 root root    42 Oct 21 11:29 ... Read More

What is the difference between \\"std::endl\\" and \\"\\" in C++?

Akansha Kumari
Updated on 02-May-2025 19:20:57

483 Views

In C++, both std::endl and are used for inserting a newline in the output stream. However, std::endl also clears the output buffer by sending all the stored output to the screen. In this article, we will see a detailed comparison along with a table and discuss the scenarios where each should be used in C++. (newline character) '' is an escape sequence that represents a newline character, which makes the cursor move to the next line. This is also used inside string literals to create line breaks. It’s faster compared to endl but doesn’t flush. When to use ... Read More

Is segmentation fault actual undefined behavior in C++?

Arjun Thakur
Updated on 24-Jun-2020 06:08:41

485 Views

Undefined behavior is a way to give freedom to implementors (e.g. of compilers or of OSes) and to computers to do whatever they "want", in other words, to not care about consequences.The cases in which segmentation fault occurs are transient in nature. They won't always result in a segmentation fault but can also run correctly(or at least appear to). For example, consider the following code fragment −#include int main() {     int arr[2];     arr[0] = 0;     arr[1] = 1;     arr[2] = 2; // Undefined behaviour     arr[3] = 3; // Undefined behaviour ... Read More

Sorting a vector of custom objects using C++ STL

Ankith Reddy
Updated on 12-Feb-2020 06:19:23

13K+ Views

You can sort a vector of custom objects using the C++ STL function std::sort. The sort function has an overloaded form that takes as arguments first, last, comparator. The first and last are iterators to first and last elements of the container. The comparator is a predicate function that can be used to tell how to sort the container. example#include #include #include using namespace std; struct MyStruct {    int key;    string data;    MyStruct(int key, string data) {       this -> key = key;       this -> data = data;    } }; int ... Read More

How to execute a command and get the output of command within C++ using POSIX?

Abhinanda Shri
Updated on 03-Dec-2024 09:39:51

13K+ Views

You can use the popen and pclose functions to pipe to and from processes. The popen() function opens a process by creating a pipe, forking, and invoking the shell. We can use a buffer to read the contents of stdout keep appending it to a result string and return this string when the processes exit. Example Here is the following example showing an execution of a command and getting the output of the command within C++ using POSIX. #include #include #include #include using namespace std; string exec(const string& command) {  char buffer[128];  string result ... Read More

Why can't variables be declared in a switch statement in C/C++?

George John
Updated on 27-Jan-2020 12:30:17

1K+ Views

Variables can be declared in a switch statement. You'll just need to declare them and use them within a new scope in the switch statement. For example,Example#include using namespace std; int main() {    int i = 10;    switch(i) {       case 2:       //some code       break;       case 10:{          int x = 13;          cout

Difference between 'struct' and 'typedef struct' in C++?

Ankith Reddy
Updated on 30-Jul-2019 22:30:22

910 Views

In C++, there is no difference between 'struct' and 'typedef struct' because, in C++, all struct/union/enum/class declarations act like they are implicitly typedef'ed, as long as the name is not hidden by another declaration with the same name.Though there is one subtle difference that typedefs cannot be forward declared. So for the typedef option, you must include the file containing the typedef before it is used anywhere.

Advertisements