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 is the difference between near, far and huge pointers?
What are advantages and disadvantages of recursive calling ?
12 Answers College School Exams Tests, Evolving Systems, HP, Jyoti Ltd, Sage, Wipro,
write a program to swap two variables a=5 , b= 10 without using third variable
What is getch () for?
How #define works?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
Write a program to print "hello world" without using a semicolon?
How can I find out how much free space is available on disk?
Output for following program using for loop only * * * * * * * * * * * * * * *
What is #define in c?
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
What is extern storage class in c?