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 are formal parameters?
How do I use void main?
Explain how do you print only part of a string?
Which is more efficient, a switch statement or an if else chain?
What is c variable?
What is use of integral promotions in c?
What are the types of assignment statements?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
How many bytes is a struct in c?
What is the advantage of a random access file?
What is the difference between a function and a method in c?
Can we use visual studio for c?
Is null always defined as 0(zero)?
What is difference between far and near pointers?
What is the purpose of the statement: strcat (S2, S1)?