
Hi friends,Here I'm posting some important concepts asked in CUSAT B Tech S1 S2 C programming examination. All the concepts are descried here in very briefly so that you can grasp it quickly.Here we go..!!! :)Pointer · Pointer is a variable that represents the location of a data item. · Address operator (&) : It evaluates the address of its operand. · Indirection Operator(*): Used to access data item referenced by a pointer. Example: Main() { Int a=3; Int *ptr; Ptr=&a; Printf(“%d %u” , *ptr, ptr); } Pointer to an array · A pointer can be used to reference an array. · The name...