main()
{
int i,j,A;
for(A=-1;A<=1;A++)
prinf("%d\t",!!A);
}
Answer Posted / y hussain reddy
1 0 1
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the storage classes in C?
Is c weakly typed?
Explain the red-black trees?
What is the use of f in c?
What do you mean by a sequential access file?
What is the difference between the local variable and global variable in c?
Why is it important to memset a variable, immediately after allocating memory to it ?
What are the similarities between c and c++?
How to implement a packet in C
What are the standard predefined macros?
what is a function method?give example?
Explain how can I pad a string to a known length?
Why do we use pointer to pointer in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain what does a function declared as pascal do differently?