What is the output of C Program with functions and pointers.?int myshow(int *);void main(){int a=10;myshow(&a);}int myshow(int *k){printf("Received %d, ", *k);}
#include "stdio.h"int main(){int x, y = 5, z = 5;x = y == z;printf("%d", x);return 0;}
#includeiostreamusing namespace std;int main(){int x;int *p;x=7;p=&x;count *p;return 0;}
#include stdio.h#define VAL 3 * (2 + 6)void solve() {int a = 10 + VAL;printf("%d", a);}int main() {solve();return 0;}
What is the output of this program?#include stdio.hint main(){for(6;4;4)printf("shravani");return0;}
What will be the output of the following code snippet? #include stdio.hvoid solve() {printf("%d %d %d", (076), (28), (0x87));}int main() {solve();return 0;}