└── README.md /README.md: -------------------------------------------------------------------------------- 1 | #include 2 | int main() 3 | { 4 | int first, second, *p, *q, sum; 5 | 6 | printf("Enter two integers to add\n"); 7 | scanf("%d%d", &first, &second); 8 | 9 | p = &first; 10 | q = &second; 11 | 12 | sum = *p + *q; 13 | 14 | printf("Sum of the numbers = %d\n", sum); 15 | 16 | return 0; 17 | } 18 | --------------------------------------------------------------------------------