Question
also Asked @
Answers
Views
select
#ifdef TRUE
int I=0;
#endif
main()
{
int j=0;
printf("%d %d\n",i,j);
}
2 1001
Give the output for the following program.
#define STYLE1 char
main()
{
typedef char STYLE2;
STYLE1 x;
STYLE2 y;
clrscr();
x=255;
y=255;
printf("%d %d\n",x,y);
}
1 994
What is the output for the program given below
typedef enum grade{GOOD,BAD,WORST,}BAD;
main()
{
BAD g1;
g1=1;
printf("%d",g1);
}
3 1215
What is the memory allocated by the following definition ?
int (*x)(); 2 1328
What is the memory allocated by the following definition ?
int (*x)[10];
3 1696
What is the output of the following program
#include<stdio.h>
main()
{
int i=0;
fork();
printf("%d",i++);
fork();
printf("%d",i++);
fork();
wait();
} 5 1133
What is the output of the program given below
#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
} Tcs 14 1712
How do you collect the metric? 2 2132
How do you test cookies? 9 3339
what are the major observations that you made when you are
doing compatibility testing particularly in web applications? 3 1892
How do you carry usability testing? Intel Grapecity Cts 3 2906
How do you create a startup script in winrunner and what is
consists generally? 2 1906
How do handle error/exceptions in winrunner. 2 1590
How do you recognise Active X components in winrunner? Wipro 4 1460
E-Mail New Answers
Answer Selected Questions
Prev 1 [2] 3 Next