what will be the output for the following program?
main()
{
char ch = 'k';
char c;
printf("%c",c);
}
Answer Posted / hussain reddy
garbage value
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between array_name and &array_name?
Write a program which returns the first non repetitive character in the string?
How can you restore a redirected standard stream?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Why is this loop always executing once?
What is the difference between typedef and #define?
What do you mean by recursion in c?
What is the use of typedef in c?
What is a ternary operator in c?
What is wrong in this statement? scanf(ā%dā,whatnumber);
Between macros and functions,which is better to use and why?
What is the difference between the = symbol and == symbol?
Is there sort function in c?
What are integer variable, floating-point variable and character variable?