How can you read a directory in a C program?
No Answer is Posted For this Question
Be the First to Post Answer
code for concatination of 2 strings with out using library functions?
Explain what are its uses in c programming?
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
What is wrong with this program statement? void = 10;
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
where does it flourished?
Explain what is the use of a semicolon (;) at the end of every program statement?
How arrays can be passed to a user defined function
biggest of two no's with out using if condition statement
What are the key features in c programming language?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
what is the function of void main()?