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
Why is %d used in c?
What is 'bus error'?
Why do we use return in c?
Add Two Numbers Without Using the Addition Operator
What are the types of type qualifiers in c?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What is a program flowchart and explain how does it help in writing a program?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
what are # pragma staments?
Explain what are multibyte characters?
Explain the use of keyword 'register' with respect to variables.
Can you please explain the difference between strcpy() and memcpy() function?
Is that possible to store 32768 in an int data type variable?
What is structure padding in c?