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
What is the g value paradox?
What is abstract data structure in c?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is a keyword?
What is the difference between a function and a method in c?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What are the types of arrays in c?
What is the difference between variable declaration and variable definition in c?
What is NULL pointer?
What are high level languages like C and FORTRAN also known as?
How many keywords (reserve words) are in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Explain enumerated types in c language?
Write a program to swap two numbers without using a temporary variable?