SWOT should be ______________.
Name the disease caused by the deficiency of Niacin?
The rate of doing work is called:
Suppose an object is weighed with a spring balance ,first in air and then whilst totally immersed in water. The reading on the balance are 0.48N and 0.36N respectively..
Calculate the density of the object ?
What will be the output of the program in 16 bit platform (Turbo C under DOS)
#include
int main()
{
int fun();
int i;
i = fun();
printf("%d\n", i);
return 0;
}
int fun()
{
_AX = 1990;
}
What will be the output of the program
#include
int main()
{
static int arr[] = {0, 1, 2, 3, 4};
int *p[] = {arr, arr+1, arr+2, arr+3, arr+4};
int **ptr=p;
ptr++;
printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr);
*ptr++;
printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr);
*++ptr;
printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr);
++*ptr;
printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr);
return 0;
}
The process of coating steel sheets by zinc to improve its corrosion resistance is called
Which of the statements is correct about the program
#include
int main()
{
float a=3.14;
char *j;
j = (char*)&a;
printf("%d\n", *j);
return 0;
}
What will be the output of the program
#include
void fun(int **p);
int main()
{
int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 8, 7, 8, 9, 0};
int *ptr;
ptr = &a[0][0];
fun(&ptr);
return 0;
}
void fun(int **p)
{
printf("%d\n", **p);
}
What will be the output of the following program in 16 bit platform assuming that 1022 is memory address of the string "Hello1" (in Turbo C under DOS)
#include
int main()
{
printf("%u %s\n", &"Hello1", &"Hello2");
return 0;
}
They probably won't attend lecture tomorrow
Each and every one / was / present / at the / wedding
If COMPUTER is coded as GKQLYPIN, what is the code for SENATE