can we access one file to one directory?
Answer / siddiqui mohd. faisal
Do you mean that can we access one file from directory
| Is This Answer Correct ? | 0 Yes | 1 No |
How can I make sure that my program is the only one accessing a file?
can we write a program in c for printf and scanf without using header file stdio.h
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
what is the hexidecimal number of 4100?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
How does selection sort work in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
what is the maximum limit of row and column of a matrix in c programming. in linux .
What is the difference b/w Structure & Array?