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
What are the 5 types of inheritance in c ++?
Did c have any year 2000 problems?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What kind of structure is a house?
How can I delete a file?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Program to simulate second clock
where does malloc() function get the memory?