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
Why do we write return 0 in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is the difference between call by value and call by reference in c?
How can I copy just a portion of a string?
What is difference between scanf and gets?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Can we assign string to char pointer?
What is the use of a semicolon (;) at the end of every program statement?
When a c file is executed there are many files that are automatically opened what are they files?
What is a memory leak? How to avoid it?
What is int main () in c?
What is "Duff's Device"?
What are the characteristics of arrays in c?
If I have a char * variable pointing to the name of a function ..