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 / chanda_ni
1
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
How many main () function we can have in a project?
string reverse using recursion
How to compare array with pointer in c?
What is the full form of getch?
Can static variables be declared in a header file?
What does %2f mean in c?
Explain the difference between ++u and u++?
how many key words availabel in c a) 28 b) 31 c) 32
What is actual argument?
What is c programing language?
What is the maximum no. of arguments that can be given in a command line in C.?
What is nested structure with example?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
How arrays can be passed to a user defined function
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code