How can you increase the size of a dynamically allocated array?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print the one dimensional array.
What is declaration and definition in c?
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
Explain what is the benefit of using enum to declare a constant?
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;
what is bit rate & baud rate? plz give wave forms
What is the difference between File pointer and Internal Charecter Pointer?
What is the value of uninitialized variable in c?
Differentiate between new and malloc(), delete and free() ?
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }