a character or group of characters that defines a register,or a part of storage
a) memory
b) byte
c) address
d) linear list
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
In C language, a variable name cannot contain?
What is type qualifiers?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
In a header file whether functions are declared or defined?
How can a process change an environment variable in its caller?
What is malloc calloc and realloc in c?
what are bit fields in c?
a program that can input number of records and can view it again the record
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
how to create duplicate link list using C???