Explain how do you determine a file’s attributes?
No Answer is Posted For this Question
Be the First to Post Answer
code for inverse a matrix
What are the different properties of variable number of arguments?
How can I delete a file?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the best organizational structure?
Why does everyone say not to use scanf? What should I use instead?
What is the -> in c?
Write a program to find the biggest number of three numbers in c?
Explain what are multidimensional arrays?
what do structure language means?
What is the difference function call by value & function call by reference?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }