How can I read a directory in a C program?
Answer Posted / hussain reddy
#include<stdio.h>
void main()
{
printf("%s",_agrv[0]);
}
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
What is static and auto variables in c?
what is uses of .net
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What are the uses of a pointer?
Why is c not oop?
the question is that what you have been doing all these periods (one year gap)
Explain how can I avoid the abort, retry, fail messages?
What is bubble sort in c?
Write a program to generate random numbers in c?
What is header file in c?
When should a type cast be used?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What is the main difference between calloc () and malloc ()?
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.
Explain the difference between ++u and u++?