What is scope of variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between c &c++?
write a c program to convert fahrenheit to celsius?
What is a stream in c programming?
how to make program without <> in libray.
What is the use of keyword VOLATILE in C?
What is c token?
What is 02d in c?
write a program to add two numbers of any size.....(remember any size)
Explain the term printf() and scanf() used in c language?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?