
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Execute Command and Get Output in C++ using POSIX
Here we will see how to use the POSIX command through C++. The process is very simple, we have to use the function called system(). Inside this we have to pass string. That string will contain the POSIX command.
The syntax is like below.
system(“command”)
Example
#include <iostream> using namespace std; int main () { cout << "Print string using echo command" << endl; system("echo 'Hello World'"); cout << "Calculate math expression using bc" << endl; system("echo '22 / 7' | bc -l"); return 0; }
Output
Print string using echo command Hello World Calculate math expression using bc 3.14285714285714285714
Advertisements