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
Explain how are portions of a program disabled in demo versions?
What is the difference between %d and %i?
Tell me is null always defined as 0(zero)?
What is array in c with example?
What are the differences between Structures and Arrays?
What is property type c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is the difference between exit() and _exit() function?
What is pointer & why it is used?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
how to find binary of number?
When should you use a type cast?
writ a program to compare using strcmp VIVA and viva with its output.
What are the advantages and disadvantages of pointers?
what will be maximum number of comparisons when number of elements are given?