Explain what is the difference between a free-standing and a hosted environment?
No Answer is Posted For this Question
Be the First to Post Answer
write a 'c' program to sum the number of integer values
how can use subset in c program and give more example
How can you read a directory in a C program?
Does free set pointer to null?
How many bytes is a struct in c?
Why cann't whole array can be passed to function as value.
What are the features of c languages?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
diff .between strcture and union
What is output redirection?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }