What character terminates all strings composed of character
arrays?
1) 0
2) .
3) END
Answer Posted / k.kavitha
1)0
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Is malloc memset faster than calloc?
What are the types of type qualifiers in c?
What is the difference between pure virtual function and virtual function?
Explain what header files do I need in order to define the standard library functions I use?
In which header file is the null macro defined?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
How can I do peek and poke in c?
Why is it usually a bad idea to use gets()? Suggest a workaround.
How do you initialize pointer variables?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
explain what are pointers?
What is the difference between procedural and declarative language?
Is fortran still used in 2018?
How many bytes are occupied by near, far and huge pointers (dos)?