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 |
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is floating point constants?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
#define f(x) main() { printf("\n%d",f(2+2)); }
void main() { int a=1; while(a++<=1) while(a++<=2); }
How can I find out how much memory is available?
Explain the difference between #include "..." And #include <...> In c?
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
what are two kinds of java