Bhanu Priya has Published 1612 Articles

Write a C program to display the size and offset of structure members

Bhanu Priya

Bhanu Priya

Updated on 06-Mar-2021 07:10:26

706 Views

ProblemWrite a C program to define the structure and display the size and offsets of member variablesStructure − It is a collection of different datatype variables, grouped together under a single name.General form of structure declarationdatatype member1; struct tagname{    datatype member2;    datatype member n; };Here, struct  - keywordtagname ... Read More

Legal and illegal declaration and initializations in C

Bhanu Priya

Bhanu Priya

Updated on 06-Mar-2021 07:02:53

1K+ Views

ProblemMention some of the legal and illegal declarations and initializations while doing C programming?Before discussing the legal and illegal statements let’s see how to declare and initialize the variables in C.Variable declarationFollowing is the syntax of variable declaration −SyntaxDatatype v1, v2, … vn;Where v1, v2, ...vn are names of the ... Read More

Advertisements