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 / jyothi
it gives syntax error
Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What is a void pointer? When is a void pointer used?
Explain how do you declare an array that will hold more than 64kb of data?
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?
Is c is a procedural language?
what are the different storage classes in c?
write a program to display all prime numbers
What are the preprocessor categories?
What is scope and lifetime of a variable in c?
Is fortran faster than c?
why do some people write if(0 == x) instead of if(x == 0)?
How do you print an address?
What are loops c?
What is calloc() function?
What is the use of sizeof () in c?
Which header file is essential for using strcmp function?