Question
also Asked @
Answers
Views
select
What is the difference between 'User Agent' and 'Simulator'. 1 455
What is the difference between 'WAP testing' and 'Web
testing'? 1 470
What is the difference between Simulator and Emulator? 2 419
how to make program without <> in library.
1 272
Test approach to windows update? 0 97
How do u identify the object that it is a standard object or not 3 1813
What is the output for the following program
#include<stdio.h>
main()
{
char a[5][5],flag;
a[0][0]='A';
flag=((a==*a)&&(*a==a[0]));
printf("%d\n",flag);
}
Wipro 5 1304
#ifdef TRUE
int I=0;
#endif
main()
{
int j=0;
printf("%d %d\n",i,j);
}
2 999
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 988
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 1212
What is the memory allocated by the following definition ?
int (*x)(); 2 1324
What is the memory allocated by the following definition ?
int (*x)[10];
3 1689
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 1123
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 1704
How do you collect the metric? 2 2129
E-Mail New Answers
Answer Selected Questions
[1] 2 Next