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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by hbajaj

  1. hbajaj

    creating lib files

    Hi everyone, can anyone explain me how to create library file in linux????? TIA
  2. hbajaj

    strange problem

    Hi Lim & eswhite, Thanks a lot for helping me in clearing my doubt.
  3. hbajaj

    printf tip

    wht will be the output for following line of code printf(3+"abcdef"); Output is def 3+ means that leave first 3 char in the quotes and print the rest. If we use in the string %d or %c (format specifiers ) the it consider it as 2 seprate char(% and d) not 1. so if code is...
  4. hbajaj

    strange problem

    The problem is in the following code : main(){ int arr[2][2] = {1,2,3,4}; int **a; a = arr; printf("Value of a+1 -> %d",*(a+1)); } This code is printing value 2 whether we define int **a or int ***a or int ****a ?????? Can anyone explain me this. I hv tested this code on Linux as...

Part and Inventory Search

Back
Top