Computer Science, asked by saidharaniachanta, 4 months ago

what will be the output for pseudo code for a=4,b=2

Answers

Answered by Rajeshsatav826piya
6

Answer:

/ PROGRAM 1

#include <stdio.h>

int main(void)

{

int arr[] = {10, 20};

int *p = arr;

++*p;

printf("arr[0] = %d, arr[1] = %d, *p = %d",

arr[0], arr[1], *p);

return 0;

}

Similar questions