adspace
How to access command-line arguments?
Answer Posted / rakesh
int main(int argc,char *argv[]) { int i; for(i=0;i<argc;i++) cout<<argv[i]; }
Post New Answer View All Answers
Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?
4492