struct ptr
{
int a;
char b;
int *p;
}abc;
what is d sizeof structure without using "sizeof" operator??
Answer Posted / kk
12 is answer
int a takes 4 bytes
char b takes 4 bytes due to data padding
int *p any pointer takes 4 bytes
so totally 12 bytes........
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is a wrapper function in c?
Can a variable be both static and volatile in c?
What is the argument of a function in c?
what is the diffrenet bettwen HTTP and internet protocol
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
how to print the character with maximum occurence and print that number of occurence too in a string given ?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is #define size in c?
What do you mean by Recursion Function?
Where is c used?
What is scope of variable in c?
Explain how can you tell whether two strings are the same?
Can you please compare array with pointer?