What is the difference between struct and union in C?
Answer Posted / hrpynux@gmail.com
A struct is a block of memory that stores several data objects, where those objects don't overlap. A union is a block of memory that stores several data objects, but has only storage for the largest of these, and thus can only store one of the data objects at any one time.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can you be sure that a program follows the ANSI C standard?
What is the difference between null pointer and wild pointer?
Can a variable be both static and volatile in c?
Explain high-order and low-order bytes.
Explain how can I prevent another program from modifying part of a file that I am modifying?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Why n++ execute faster than n+1 ?
What is a ternary operator in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Why is c called c not d or e?
You have given 2 array. You need to find whether they will
create the same BST or not.
For example:
Array1:10 5 20 15 30
Array2:10 20 15 30 5
Result: True
Array1:10 5 20 15 30
Array2:10 15 20 30 5
Result: False
One Approach is Pretty Clear by creating BST O(nlogn) then
checking two tree for identical O(N) overall O(nlogn) ..we
need there exist O(N) Time & O(1) Space also without extra
space .Algorithm ??
DevoCoder
guest
Posted 3 months ago #
#define true 1
#define false 0
int check(int a1[],int a2[],int n1,int n2)
{
int i;
//n1 size of array a1[] and n2 size of a2[]
if(n1!=n2) return false;
//n1 and n2 must be same
for(i=0;i
Why we write conio h in c?
Explain what is the difference between the expression '++a' and 'a++'?
Is r written in c?
What is sizeof int in c?