can we access one file to one directory?
Answer / siddiqui mohd. faisal
Do you mean that can we access one file from directory
| Is This Answer Correct ? | 0 Yes | 1 No |
how to capitalise first letter of each word in a given string?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What is wrong with this program statement? void = 10;
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
Compare array data type to pointer data type
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Why #include is used in c language?
What is the difference between static and global variables?
What is meant by global static? why we have to use static variable instead of Global variable
Is it possible to have a function as a parameter in another function?
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>