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
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Explain the advantages and disadvantages of macros.
How can a program be made to print the line number where an error occurs?
What is FIFO?
what value is returned to operating system after program execution?
What is nested structure in c?
What standard functions are available to manipulate strings?
Is there anything like an ifdef for typedefs?
C program to find all possible outcomes of a dice?
Write a program of advanced Fibonacci series.
What are file streams?
What is extern keyword in c?
What is an auto keyword in c?
What is array in C
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant