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
Do you know what are bitwise shift operators in c programming?
Explain what is the difference between a string and an array?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What are the types of i/o functions?
Are there namespaces in c?
How many header files are in c?
what is the difference between class and unio?
Explain what does a function declared as pascal do differently?
What is the use of static variable in c?
What is the condition that is applied with ?: Operator?
What is wild pointer in c with example?
How can you draw circles in C?
Write a function that will take in a phone number and output all possible alphabetical combinations
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is putchar() function?