What is the output for the following program
#include<stdio.h>
main()
{
char a[5][5],flag;
a[0][0]='A';
flag=((a==*a)&&(*a==a[0]));
printf("%d\n",flag);
}
Answer Posted / jaya prakash
0
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How can I access an I o board directly?
What are global variables?
Why do some versions of toupper act strangely if given an upper-case letter?
What is the difference between struct and union in C?
Differentiate call by value and call by reference?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
write a program to concatenation the string using switch case?
Why should I prototype a function?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Is fortran faster than c?
Difference between Function to pointer and pointer to function
Which is an example of a structural homology?
How can you determine the maximum value that a numeric variable can hold?
When can a far pointer be used?