Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. anvartk

    Doubt in recursion

    How does the successive values are stored in recursion(internal)?
  2. anvartk

    Pointers to functions!!Please give a small tutorial

    I am confused about advanced pointer concepts of functions. Give a small tutorial or suggest any free tutorial or a book
  3. anvartk

    write a kbhit() function using stdio

    Hi, You can solve the problem by making the program a TSR
  4. anvartk

    Getting tired with pointers to functions.HELP!!

    Hi, Don't misunderstand me The questions above are from a test i attended. I did'nt get the answer Please help me(Give me answers)
  5. anvartk

    Getting tired with pointers to functions.HELP!!

    What do the following statements indicate? 1) int(*p)[10] int*p[10] 2)How can i understand what the following statement indicates? char *(*(*a[N])())();
  6. anvartk

    How "back slash(\)" behaves in strings?

    Thank you for all You made me happy now!!!
  7. anvartk

    How "back slash(\)" behaves in strings?

    void main() { char s[]="\12345s\n"; printf("%d",sizeof(s)); } Output:6 How? void main() { char *s="\12345s\n"; printf("%d",sizeof(s)); } Output:2 How? What is the difference?

Part and Inventory Search

Back
Top