How can you read a directory in a C program?
No Answer is Posted For this Question
Be the First to Post Answer
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
difference between malloc and calloc
how to find the sizof of any datatype using bit manipulations
Where define directive used?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
write a program for even numbers?
Explain the term printf() and scanf() used in c language?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
What is the difference between scanf and fscanf?
How can I invoke another program from within a C program?