write a c program to find the largest and 2nd largest
numbers from the given n numbers without using arrays
What is clrscr in c?
What is indirect recursion? give an example?
How can this be legal c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is union in c?
What are register variables in c?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
what is available in C language but not in C++?
10 Answers CTS, TCS,
What is the difference between GETS();AND SCANF();
What are the Advantages of using macro
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); }
can we access one file to one directory?