struct ptr
{
int a;
char b;
int *p;
}abc;
what is d sizeof structure without using "sizeof" operator??
Answer Posted / vignesh1988i
THE SIZE OF THE STRUCTURE WILL BE '5'
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
What is extern c used for?
What does d mean?
What does %c do in c?
Is c procedural or functional?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Can we compile a program without main() function?
Is c still relevant?
Why void main is used in c?
What is function prototype in c with example?
What is function definition in c?
What is a pointer and how it is initialized?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What are the different types of control structures?
What is binary tree in c?