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 is wrong with this code?
How would you obtain the current time and difference between two times?
How can I find out if there are characters available for reading?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What do you mean by dynamic memory allocation in c?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
can any one provide me the notes of data structure for ignou cs-62 paper
Do you know the difference between malloc() and calloc() function?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
How do you override a defined macro?
State the difference between x3 and x[3].
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Write a program with dynamically allocation of variable.
What is the difference between typedef struct and struct?