Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

C | Input and Output | Question 13

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article




#include<stdio.h>
  
int main()
{
    char *s = "Geeks Quiz";
    int n = 7;
    printf("%.*s", n, s);
    return 0;
}


(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

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads