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 progam to compare the string using switch case?

1 Answers  


out put of printf(“%d”,printf(ram));

5 Answers  


what is the flow of execution in cprogram? ex:printf();,scanf();

2 Answers  


What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }

1 Answers  


1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.

4 Answers  






What do the functions atoi(), itoa() and gcvt() do?

0 Answers   Aspire, Infogain,


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

0 Answers   Convergys,


a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

0 Answers   Wilco,


fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }

17 Answers   NDS,


Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)

6 Answers   Subex,


define function

4 Answers   Assurgent, Sonata,


Differentiate between a structure and a union.

0 Answers   Zensar,


Categories