Explain what is operator promotion?
No Answer is Posted For this Question
Be the First to Post Answer
What does sizeof return c?
What is structure padding and packing in c?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
what is the use of ~ in c lang?????
How would you obtain the current time and difference between two times?
what is a function pointer and how all to declare ,define and implement it ???
Explain enumerated types.
how to do in place reversal of a linked list(singly or doubly)?
what is the difference between class and unio?
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
print a "hello" word without using printf n puts in c language
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); }