#include <stdio.h> void cheerUp(int *a) { *a = (*a) * 3; } int main() { int num; printf("Enter value: "); scanf("%d", &num); cheerUp(&num); printf("value * 3 = %d", num); }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment