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 #define in c?
What is the difference between test design and test case design?
What is the best way to store flag values in a program?
The file stdio.h, what does it contain?
How do you define structure?
What does emoji p mean?
Describe wild pointers in c?
Explain can static variables be declared in a header file?
Can we declare function inside main?
main() { printf("hello"); fork(); }
How to declare a variable?
Are pointers really faster than arrays?
What does malloc () calloc () realloc () free () do?
How can you increase the allowable number of simultaneously open files?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }