what will be the output for the following program?
main()
{
char ch = 'k';
char c;
printf("%c",c);
}
Answers were Sorted based on User's Feedback
How to receive strings with spaces in scanf()
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What is an volatile variable?
What are the various topologies? Which one is the most secure?
Array is an lvalue or not?
what is the hardware model of CFG( context free grammar)
How can I run c program?
What is maximum size of array in c?
What is an object?
Why is a semicolon (;) put at the end of every program statement?
What is the size of structure in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples