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 |
When can you use a pointer with a function?
How can a string be converted to a number?
What do you mean by invalid pointer arithmetic?
Write a c program to demonstrate character and string constants?
What is meaning of tree
Is fortran faster than c?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
What do you mean by keywords in c?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Program to simulate second clock
What are the various topologies? Which one is the most secure?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?