struct node {struct node*temp,*new}
prinf("%d",sizeof(struct node));
Answer Posted / dani
It's architecture dependent. If you have a 32 bit address than the output will be 4 (octets), if the address is 64 bit than it'll be 8.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What do you understand by normalization of pointers?
What does the file stdio.h contain?
How arrays can be passed to a user defined function
Can the “if” function be used in comparing strings?
What are enumerated types?
Which is the best website to learn c programming?
What is atoi and atof in c?
Can two or more operators such as and be combined in a single line of program code?
What is pre-emptive data structure and explain it with example?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What's the best way of making my program efficient?
What is malloc() function?
Write a simple code fragment that will check if a number is positive or negative.
Write a Program to find whether the given number or string is palindrome.
write a program to print largest number of each row of a 2D array