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's the total generic pointer type?
what is the height of tree if leaf node is at level 3. please explain
Write a program to reverse a given number in c language?
What is the difference between far and near ?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
what is the structure pointer?
What is the difference between new and malloc functions?
List some applications of c programming language?
Can the sizeof operator be used to tell the size of an array passed to a function?
What are c identifiers?
Explain the difference between null pointer and void pointer.
How to throw some light on the b tree?
Differentiate between calloc and malloc.
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?