McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Programming for Problem Solving
→
Printf() Belongs To Which Library Of C
Q.
Printf() Belongs To Which Library Of C
A.
Stdlib.H
B.
Stdio.H
C.
Stdout.H
D.
Stdoutput.H
Answer» B. Stdio.H
2.3k
0
Do you find this helpful?
32
View all MCQs in
Programming for Problem Solving
Discussion
No comments yet
Login to comment
Related MCQs
#include "stdio.h" int main() { int a = 10; printf("%d", a); int a = 20; printf("%d",a); return 0; }
#include "stdio.h" int main() { int a = 10, b = 20; if(a=b) { printf("Easy"); } else { printf("Hard"); } return 0; }
Int Main() { Extern Int I; I = 20; Printf("%D", Sizeof(I)); Return 0; }
Int Main() { Int X = 10; { Int X = 0; Printf("%D",X); } Return 0; }
//This Program Is Compiled On 32 Bit DEV-C++ Int Main() { Char *Ptr1, *Ptr2; Printf("%D %D", Sizeof(Ptr1), Sizeof(Ptr2)); Return 0; }
What Should Be The Output: Int Main() { Int A = 10/3; Printf("%D",A); Return 0; }
Int Main() { Int A = 10.5; Printf("%D",A); Return 0; }
Int Main() { Int _ = 10; Int __ = 20; Int ___ = _ + __; Printf("__%D",___); Return 0; }
Int Main() { Int A = 5; Int B = 10; Int C = A+B; Printf("%I",C);
int main() { int x; x=10,20,30; printf("%d",x); return 0; }