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 gkittelson 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: *

  • Users: vsp78
  • Order by date
  1. vsp78

    Assigning constants at Run Time in pointers

    I am curious to know,whether it is possible to assign array of constants at once at runtime using pointers. for ex. FIGURE-1 ====================== int *x; x = (int *) malloc(3 * sizeof(int)); *x= {7,8,2}; printf("first element of array x is %d\n",x[0]); ===========================...

Part and Inventory Search

Back
Top