1. main()
{
printf("%d",printf("HelloSoft"));
} Output?
Answer Posted / unknown
as %d is used for int and "hellosoft" is char , error will
prevail.
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
Difference between malloc() and calloc() function?
What is static volatile in c?
What is a char in c?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is function prototype?
Explain bit masking in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is anagram in c?
What is a #include preprocessor?
What is the difference between text and binary i/o?
What is p in text message?
What is #line?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is the g value paradox?
Explain the difference between call by value and call by reference in c language?