Recent content by manubatham20

  1. M

    how to make the string function ?

    #include<stdio.h> #include<conio.h> int strlent(char *a) { int i; for(i=0;a[i]!='\0';i++); return i; } void main() { char a[100]; clrscr(); printf("\n\n\t\tEnter the string = "); fflush(stdin); gets(a); printf("\n\n\t\t The length of the string is = %d",strlent(a))...
  2. M

    I want information about SDLC

    Good Reply. Thats why u people are in forum. I just want the good info. which u people can't give to me. Don't give me any rubbish suggestion. Because i already search it before posting it in the forum.
  3. M

    Site for objective test of c knowledge

    I have it already. Thanks
  4. M

    I want information about SDLC

    I wanna best information for preparing my assignment of SDLC - "System development life cycle." Can anyone can provide it to me. Urgently.
  5. M

    I wanna information about stack

    I wanna info about stack in simple and explainatory way. Will anyone please provide me more info that how to create it, what restrictions it follows-(linear/circular) and more details, as can we insert more than one elements at a time blah blah blah.... Please kindly anyone provide this to me or...
  6. M

    Any one help me to solve it.

    How, i can't because you are not allowed to use any graphical functions in it. So how can i go back to these locations. (i.e. without using goto or any other function like this).
  7. M

    Can anyone tell me where unix stores its password

    Can anyone tell me how to know how to prevent the changing of password in unix. We works on a unix server through telnet on terminals. Anyone of us changes the password and the whole blame goes to me because people knows my habit of R&D. So please can anyone tell me how to restrict this. Thats a...
  8. M

    Any one help me to solve it.

    1 2 3 4 5 16 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9 Can any one give me such a program to generate this output??? I wanna this wihthout using of arrays. Very truely, a typical task for me.:twisted...
  9. M

    Site for objective test of c knowledge

    Is there any site where i can test my c knowledge. Or any program which includes multiple test to test you C knowledge. I want to cons. on minute things. Really need it.
  10. M

    power function by bitwise operations

    Can the power of any other number calculated through it.
  11. M

    Method faster than quick sort in C

    Is there any alternate methode exist which is faster than quick sort to sort the arrays in C language. Please tell the source if you have.
  12. M

    Anyone help me to solve problems

    I am not getting the funda of the following problems- 1. Pascal triangle 2. Sin(x) series, where x is in radian sin x = x-(x^3/3!)+(x^5/5!)-(x^7/7!)+... I tried the above programs many times but no result. Can anyone provide me its solutions??????????
  13. M

    What to Study to get into the field of hackers

    Hacking shows the mind of anybody. How deeper he knows abut anything and how efficiently he use it. So that it very very necessary to get the basic knowledge and for this knowledge and its use, u should join any hacking course.
  14. M

    Lesser known facts in C

    Very very interesting and deep knowledge. I know few things discussed above but not all. Try this-- main() { int a=10,b=20; printf("%d %d"); } What its print. Output 20 10 Keep up sharing.
  15. M

    What to Study to get into the field of hackers

    I am also interesting in it. But reading books is not only the solution, i think. I try to read many books myself but there is not benefit. You need a guidence. I have many many many books about it. But no benefit from reading only books, practical concepts remains unclear without doing in real...
Top Bottom