C | Input and Output | Question 13
#include<stdio.h> int main() { char *s = "Geeks Quiz" ; int n = 7; printf ( "%.*s" , n, s); return 0; } |
chevron_right
filter_none
(A) Geeks Quiz
(B) Nothing is printed
(C) Geeks Q
(D) Geeks Qu
Answer: (C)
Explanation: .* means The precision is not specified in the format string, but as an additional integer value argument preceding the argument that has to be formatted.
Quiz of this Question
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.