An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
No Answer is Posted For this Question
Be the First to Post Answer
How are 16- and 32-bit numbers stored?
What is the use of extern in c?
write a c program to find the sum of five entered numbers using an array named number
Is main an identifier in c?
Explain pointer. What are function pointers in C?
List some of the static data structures in C?
What is #include stdio h and #include conio h?
Why array is used in c?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
How will you divide two numbers in a MACRO?
What are structure members?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?