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 / jaya prakash
0
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Is c is a middle level language?
What are the two types of structure?
What is nested structure in c?
What is double pointer in c?
How can you be sure that a program follows the ANSI C standard?
What is pointer & why it is used?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Why doesnt long int work?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
In a switch statement, what will happen if a break statement is omitted?
What are the different types of control structures in programming?
What is the difference between mpi and openmp?
What is pointers in c?
What is exit() function?