edited by
324 views
0 votes
0 votes

Find the output of

#include <stdio.h>
void main()
{
    int k =5;
    int *p = &k;
    int **m = &p;
    **m = 6;
    printf("%d",k);
}
  1. 5
  2. 6
  3. Junk value
  4. Compile time error
edited by

1 Answer

Related questions

0 votes
0 votes
1 answer
1
gatecse asked Mar 2, 2018
801 views
In C programming language, which of the following operators has the highest precedence?unary +*>===
0 votes
0 votes
2 answers
2
gatecse asked Mar 2, 2018
756 views
Bluetooth uses ____ method in physical layer to avoid interference from other devices or other networksFHSSFDSSTDSNone of the above
0 votes
0 votes
1 answer
3
gatecse asked Mar 2, 2018
386 views
In which of the following search agent operates by interleaving computation and action?Offline searchOnline searchBreadth first searchDepth first search
0 votes
0 votes
1 answer
4
gatecse asked Mar 2, 2018
370 views
Which of the following deals with the precise model where accurate solutions are achieved quickly?Soft computingMobile computingHard computingNone of the above