Answer Posted / viji
It doesn't return any value
Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
When is the “void” keyword used in a function?
Is python a c language?
Explain 'bit masking'?
What's the right way to use errno?
What is enumerated data type in c?
What is p in text message?
Explain the array representation of a binary tree in C.
Why is c called a mid-level programming language?
Why we use int main and void main?
What is structure data type in c?
Explain the Difference between the New and Malloc keyword.
What is the difference between variable declaration and variable definition in c?
What is keyword in c?
Explain what is the stack?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant