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
If the size of int data type is two bytes, what is the range of signed int data type?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
What's wrong with "char *p = malloc(10);" ?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
How do shell structures work?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
List the difference between a "copy constructor" and a "assignment operator"?
Why should I prototype a function?
How is pointer initialized in c?
Explain pointer. What are function pointers in C?