if a person is buying coconuts of Rs10,and then sell that
coconuts of Rs9,with the loss of one rupee.After that the
person became a millaniore.how?
Answer Posted / pramod
The questioner has no idea of zeros and millions which is
basic arithmetic
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is a good data structure to use for storing lines of text?
all c language question
Why are all header files not declared in every c program?
What is the difference between if else and switchstatement
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is the difference between memcpy and memmove?
How do you print an address?
What is typedef struct in c?
What is difference between && and & in c?
Can you please explain the difference between strcpy() and memcpy() function?
What are the benefits of c language?
How do I convert a string to all upper or lower case?
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(); }
Write a code to remove duplicates in a string.
What is a structure member in c?