what are advantages of U D F?
Answer / manav kothari
You just need to include appropriate header files to use these functions. These are already declared and defined in C ...
| Is This Answer Correct ? | 0 Yes | 0 No |
Difference between pass by reference and pass by value?
What is indirection? How many levels of pointers can you have?
Which of these functions is safer to use : fgets(), gets()? Why?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
What does 3 mean in texting?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
Why static variable is used in c?
How will you divide two numbers in a MACRO?
Explain what are the different file extensions involved when programming in c?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
Describe the order of precedence with regards to operators in C.
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.