Explain how do you list files in a directory?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
What is a floating point in c?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What are the different types of pointers?
What are the string functions? List some string functions available in c.
what is the difference between char * const and const char *?
1 1 12 21 123 321 12344231 how i creat it with for loop??
What is scanf () in c?
Can an array be an Ivalue?
how to execute a program using if else condition and the output should enter number and the number is odd only...
program in c to print 1 to 100 without using loop