CSE MCQs :: C-MCQs
-
What substitution should be made to //-Ref such that ptr1 points to variable C?
int main()
{
int a = 1, b = 2, c = 3;
int *ptr1 = &a;
int **sptr = &ptr1;
//-Ref
} - Which of the following declaration throw run-time error?
-
Comment on the output of this C code?
int main()
{
int a = 10;
int **c -= &&a;
}