What is mean by Data Driven framework in QTP? Can any one
answer me in details on this regard.
No Answer is Posted For this Question
Be the First to Post Answer
Stimulate calculator using Switch-case-default statement for two numbers
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Which one would you prefer - a macro or a function?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
How do I access command-line arguments?
What is pointer in c?
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
What is wrong with this declaration?
Difference between malloc() and calloc() function?
When should the const modifier be used?