Explain how do you list files in a directory?
No Answer is Posted For this Question
Be the First to Post Answer
What is array in c with example?
How can I run c program?
how many argument we can pas in in a function
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
How do we print only part of a string in c?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
Do you have any idea how to compare array with pointer in c?
How can I read/write structures from/to data files?
How can I sort a linked list?
What is meant by int fun const(int a, int b) { .... ... }