Currently I am working on project of Image processing using c++. I found solution which requires use of Command prompt.Can you please tell me syntax of some portion of it?
Since my C++ skills aren't that great I don't know how to achieve this.
Currently I am working on project of Image processing using c++. I found solution which requires use of Command prompt.Can you please tell me syntax of some portion of it?
Since my C++ skills aren't that great I don't know how to achieve this.
Try to use system() function:
#include <stdlib.h>
int main(void)
{
return system("dir");
}