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 / chanda_ni
1
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is table lookup in c?
Differentiate fundamental data types and derived data types in C.
When should volatile modifier be used?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is the process to generate random numbers in c programming language?
What is d'n in c?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What is data structure in c programming?
What is the difference between procedural and functional programming?
What is the purpose of 'register' keyword?
how do you execute a c program in unix.
What is a 'null pointer assignment' error?
What is malloc return c?
what is a constant pointer in C
Which is the best website to learn c programming?