#include <stdio.h> typedef int integer; int main() { int n1 = 120, *p; float n2 = 250; integer k = n1; p = &k; printf("%d\n", *p); return 0; }
120
Previous Question Next Question
Your comments will be displayed only after manual approval.