Answer Posted / anandhi
structure is nothing but user defined data types...
structure used then more then one datatypes used in single
strud\cture...
syntax:
struct [struct_name]
{
datatype var1;
...
...
};
struct variable creation:
syntax:
struct [name]
{
...
...
}[struct var_name];
[struct var_name].variablename;
.......................................
ex:
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is external variable in c?
Explain high-order bytes.
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What is a keyword?
What is function prototype in c language?
State the difference between x3 and x[3].
Are the outer parentheses in return statements really optional?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Apart from dennis ritchie who the other person who contributed in design of c language.
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Is using exit() the same as using return?
Write a program that accept anumber in words
What is calloc()?
Difference between macros and inline functions? Can a function be forced as inline?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above