____ it help you in your studies ?
What will be the output of the program in TurboC?
#include
int fun(int **ptr);
int main()
{
int i=10, j=20;
const int *ptr = &i;
printf(" i = %5X", ptr);
printf(" ptr = %d", *ptr);
ptr = &j;
printf(" j = %5X", ptr);
printf(" ptr = %d", *ptr);
return 0;
}
Give the abbreviation of AWT
While calculating time complexity of an algorithm, the designer concerns himself/herself primarily with the run time and not the compile time Why
What is the output of this C code? int main() { printf("before continue "); continue; printf("after continue\n"); }
Select * from employee What type of statement is this
Which of the following cannot be used as LHS of the expression in for (exp1;exp2; exp3)
The correct syntax for running two variable for loop simultaneously is
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; }
The keyword βbreakβ cannot be simply used within
Finding himself short ________ money, he wrote ______ his uncle _______ help
Which of the following code can be used to redirect user to different url
The permission -rwxrΒ±rΒ± represented in octal expression will be
A trend was observed in the growth of the population in Saya islands. The population tripled every month. Initially the population of the Saya Island was 100. What would be its population after 4 months