1. main()
{
printf("%d",printf("HelloSoft"));
} Output?
Answers were Sorted based on User's Feedback
Answer / sandy
Upon a successful return, the printf() function returns the
number of characters printed.
Answer: HelloSoft9
| Is This Answer Correct ? | 39 Yes | 2 No |
Answer / unknown
as %d is used for int and "hellosoft" is char , error will
prevail.
| Is This Answer Correct ? | 2 Yes | 8 No |
What are qualifiers in c?
What is Full Form of C and Why We use C
Can we write a program without main() function?
What is the difference between constant pointer and pointer to a constant. Give examples.
What are identifiers in c?
how to find the sizof of any datatype using bit manipulations
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
write a program that print itself even if the source file is deleted?
write a program to remove duplicate from an ordered char array? in c
what is the most appropriate way to write a multi-statement macro?
What is n in c?
What is merge sort in c?