what is the different between data structure and data type?
Answer / shalini
data structure is the way of organising and storing the
data, where as data type is the one that defines the
required data for the program requirement.
ex: integer, char,float
| Is This Answer Correct ? | 11 Yes | 1 No |
What will the preprocessor do for a program?
What is a constant and types of constants in c?
What are the characteristics of arrays in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
What does return 1 means in c?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
HOW CAN ADD OUR FUNCTION IN LIBRARY.
What is structure padding & expalain wid example what is bit wise structure?
When can you use a pointer with a function?
How to swap 3 numbers without using 4th variable?