What is the difference between a structure and a union?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Structure: All members have their own memory location.
Union: All members share the same memory location.
| Is This Answer Correct ? | 0 Yes | 0 No |
Structure: All members have their own memory location.
Union: All members share the same memory location.
| Is This Answer Correct ? | 0 Yes | 0 No |
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What are the features of the c language?
program in c to print 1 to 100 without using loop
How. To pass the entrance test
Explain the differences between public, protected, private and internal.
Write a program that can show the multiplication table.
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
what is use of malloc and calloc?
How many loops are there in c?
Explain the difference between ++u and u++?
Write a program in C to reverse a number by recursive function?