Int n1, n2 = 55 is an example of
A remote node is being node which has a copy of a
Products that are bought to be used in conduct of business is called
In C++ a name that is assigned by a user for a program elements such as variable, type, class, function or namespaces is called
What will be the output of the program
#include
int main()
{
void fun(int, int[]);
int arr[] = {1, 2, 3, 4};
int i;
fun(4, arr);
for(i=0; i<4; i++)
printf("%d,", arr[i]);
return 0;
}
void fun(int n, int arr[])
{
int *p=0;
int i=0;
while(i++ < n)
p = &arr[i];
*p=0;
}
What is the output of this C code? void main() { int k = 0; for (k < 3; k++) printf("Hello"); }
What is the output of the below code considering size of short int is 2, char is 1 and int is 4 bytes? int main() { short int i = 20; char c = 97; printf("%d, %d, %d\n", sizeof(i), sizeof(c), sizeof(c + i)); return 0; }
Consider the given circuit.In this circuit, the race around
Out of the following constraints, select the one which doesn't require start or finish date to be added in order to schedule a task in MS Project
The keyword βbreakβ cannot be simply used within
For JK flip flop with J=1, K=0, the output after clock pulse will be ________
What is the output of this C code? void main() { double k = 0; for (k = 0.0; k < 3.0; k++); printf("%lf", k); }
Which for loop has range of similar indexes of 'i' used in for (i = 0;i < n; i++)
Automatic variables are variables that are