C language

C pointer INTRODUCTION

Consider the following c statement: Int x=2; The above statement requests compiler to execute following steps: Reserve the required space (depending upon the data type and computer configuration) for the variable (randomly selected out of free memory pool) Assign i as name for that reserved space Store the integer value 2 in the reserved space […]