Interviewer And Interviewee Guide

C++ Syntax Interview Question:

What is format for defining a structure?

Submitted by: Muhammad
The format for defining a structure is:

struct Tag {
Members
};
Where Tag is the name of the entire type of structure and Members are the variables within the struct. To actually create a single structure the syntax is
struct Tag name_of_single_structure;
Submitted by: Muhammad

Read Online C++ Syntax Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.