How can I invoke another program (a standalone executable, or an operating system command) from within a c program?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Is an array parameter is always "by reference" ?

1 Answers  


why integer range between -327680to+32767

2 Answers  


What are the __date__ and __time__ preprocessor commands?

0 Answers  


what is the format specifier for printing a pointer value?

0 Answers  


what do you mean by defining a variable in our c code?

2 Answers  


Why does the call char scanf work?

0 Answers  


What is an array? What the different types of arrays in c?

0 Answers  


5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.

0 Answers  


What is the explanation for cyclic nature of data types in c?

0 Answers  


what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?

2 Answers  


dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?

4 Answers  


Categories