What is the difference between test design and test case
design?
No Answer is Posted For this Question
Be the First to Post Answer
What is a memory leak in structures? How can we rectify that?
Are there any problems with performing mathematical operations on different variable types?
What is the best way to store flag values in a program?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the c value paradox and how is it explained?
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')
Define C in your own Language.
What is clrscr in c?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
What is a floating point in c?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
WAP to convert text into its ASCII Code and also write a function to decode the text given?