what is structuer?
Answers were Sorted based on User's Feedback
Answer / ashish
A structure is a collection of variables under a single name.
These variables can be of different types, and each has a name
which is used to select it from the structure. A structure is
a convenient way of grouping several pieces of related
information together.
A structure can be defined as a new named type, thus extending
the number of available types. It can use other structures,
arrays or pointers as some of its members, though this can get
complicated unless you are careful.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / mayur dharmik
1. Structure is USER DATA TYPE,
2. It is the collection of Similar OR Dissimilar data type
of element to create new data type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dharmaraj
A STRUCTURE IS "ALL THE DATAS TO SAVING IN ONE UNIT "AND
CALLED IN SINGLE NAME.
the structur is used in use "struct" keyword.
[e.g]
struct struct_name()
{
-----
-----
}
| Is This Answer Correct ? | 0 Yes | 1 No |
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
1. Write a program to reverse every second word in a given sentence.
What are directives in c?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
How do I access command-line arguments?
What is the use of a semicolon (;) at the end of every program statement?
what is structuer?
What is a macro in c preprocessor?
Explain what are the advantages and disadvantages of a heap?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)