Tag Archives: harpreet singh

plz tell me what is the function of system(“pause”) in this program.

#include int main() { int value = 77,num =99; int *pv=&value,*pn = # int **ppi; ppi = &pv; printf(“**ppi=%d \n “,**ppi); ppi = &pn; printf(“**ppi= %d \n”,**ppi); system(“pause”); }

Posted in Uncategorized | Tagged | 1 Comment