Answer Posted / prady
To provide accuracy for calculations.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What is the difference between #include and #include 'file' ?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
How to throw some light on the b tree?
What 'lex' does?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is table lookup in c?
How can I find the modification date of a file?
Write a code to generate a series where the next element is the sum of last k terms.
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Can variables be declared anywhere in c?
What is an example of structure?
What is the usage of the pointer in c?