What is the use of typedef in structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
What are the types of data types and explain?
Define Spanning-Tree Protocol (STP)
if p is a string contained in a string?
what will happen if you free a pointer twice after allocating memory dynamically ?
Explain what is the benefit of using an enum rather than a #define constant?
What is the difference between the local variable and global variable in c?
I have seen function declarations that look like this
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is a memory leak? How to avoid it?
Is swift based on c?
Is there a way to compare two structure variables?