Using which language Test cases are added in .ptu file of RTRT unit testing???


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

Post New Answer

More C Interview Questions

write a c program to find the roots of a quadratic equation ax2 + bx + c = 0

11 Answers   CSC, St Marys, TATA,


2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value

3 Answers   Accenture,


what different between c and c++

1 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


Is the following code legal? struct a { int x; struct a b; }

4 Answers  






Find greatest of two numbers using macro

4 Answers   Bosch, Siemens,


What does extern mean in a function declaration?

4 Answers  


Explain what are the advantages and disadvantages of a heap?

0 Answers  


How do I send escape sequences to control a terminal or other device?

0 Answers  


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

0 Answers  


i have a written test for microland please give me test pattern

0 Answers   Microland,


Ow can I insert or delete a line (or record) in the middle of a file?

0 Answers  


Categories