For the following questions answer them individually
The simplified Sum of Product form of the following Boolean expression $$(P+\overline{Q}+\overline{R})(P+Q+R)(P+Q+\overline{R})$$
Whatis the output of this C code?
#include <stdio.h>
void main()
{
int k = 5;
int *p = &k;
int **m = &p;
printf("%d %d %d\n", k, *p, **m);
}