#include <stdio.h> int main() { int num = 45, *ptr = # function(&num); printf("%d ", *ptr); } void function(int *ptr) { int L = 20; ptr = &L; printf("%d ", *ptr); }
20 45
Previous Question Next Question
Your comments will be displayed only after manual approval.