what will be the output for the following program?
main()
{
char ch = 'k';
char c;
printf("%c",c);
}
Answer Posted / akansha
there vl b no result.......
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is realloc in c?
what will be maximum number of comparisons when number of elements are given?
What is meant by keywords in c?
Explain is it valid to address one element beyond the end of an array?
What is the difference between memcpy and memmove?
How can I delete a file?
write a program to concatenation the string using switch case?
List the difference between a "copy constructor" and a "assignment operator"?
Explain the difference between call by value and call by reference in c language?
Differentiate between null and void pointers.
What is the difference between fread and fwrite function?
Describe explain how arrays can be passed to a user defined function
Write a c program to build a heap method using Pointer to function and pointer to structure ?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?