What is an example of enumeration?
Answer / antony edwin
when you list all of an author's works one by one.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between text and binary modes?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
where does malloc() function get the memory?
Write down the program to sort the array.
What is volatile variable in c?
What is the memory allocated by the following definition ? int (*x)[10];
Which sorting algorithm is the best?
WHAT IS HEADER?
difference between spiral and waterfall model
In C programming, what command or code can be used to determine if a number of odd or even?
What is use of integral promotions in c?