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
Explain how can I convert a string to a number?
What are categories used for in c?
What are type modifiers in c?
What is variable in c example?
What is the size of a union variable?
Should a function contain a return statement if it does not return a value?
Who invented b language?
If the size of int data type is two bytes, what is the range of signed int data type?
What is spark map function?
Why is structure padding done in c?
What is assert and when would I use it?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Give differences between - new and malloc() , delete and free() ?
What functions are used for dynamic memory allocation in c language?
What is a list in c?