Write the test cases for checking a variable having value in
range -10.0 to +10.0?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How does normalization of huge pointer works?

0 Answers  


What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }

5 Answers   ADITI, Wipro,


What do you mean by dynamic memory allocation in c?

0 Answers  


Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }

3 Answers   IBM,


what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????

2 Answers   Apple,


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

0 Answers  


main difference between c and c++ language

1 Answers  


What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;

12 Answers   TCS,


What is array in c with example?

0 Answers  


write a program to fined second smallest and largest element in a given series of elements (without sorting)

9 Answers   Yahoo,


Write a C program to perform some of the operation which can be performed using Single linked list

1 Answers   Qualcomm,


C program to read the integer and calculate sum and average using single dimensional array

0 Answers  


Categories