if i,j,k are integers, the scanf function to enter i,j,k such that i i

Loading

โœช Choose the correct option.

if i,j,k are integers, the scanf function to enter i,j,k such that i is decimal,j is octal and k is hexadecimal would be

A. scanf(“%x %x %8x”,i,j,k)
B. scanf(“%d %o %x”, i,j,k)
C. scanf(“%d %o %x”,&i, &j, &k)
D. scanf(“%d %8d %16d”, &i, &j, &k)

Leave a Comment