How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?


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

Post New Answer

More C Interview Questions

Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv

6 Answers   Accenture,


why we wont use '&' sing in aceesing the string using scanf

0 Answers   HCL,


Can you please explain the difference between exit() and _exit() function?

0 Answers  


#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }

3 Answers   VB,


What is the difference between malloc calloc and realloc in c?

0 Answers  






difference between string and array?

6 Answers  


What is scope rule of function in c?

0 Answers  


How can I trap or ignore keyboard interrupts like control-c?

0 Answers  


How can you return multiple values from a function?

0 Answers  


study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above

15 Answers   Accenture, TCS,


Is Exception handling possible in c language?

0 Answers   Wipro,


what are the general concepts of c and c++

2 Answers  


Categories