What does the && operator do in a program code?
Answer / Reenu
The && (AND) operator tests whether both of its operands are true. If both expressions on either side of the AND operator are non-zero or pointers that are not null, then the expression is considered true.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are pointers? Why are they used?
void main() { int i=5; printf("%d",i+++++i); }
what is the output of printf("%d",(scanf("%d",10));
explain what is a newline escape sequence?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
What is the difference between union and anonymous union?
What does sizeof int return?
Explain what is the advantage of a random access file?
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
Why c is called top down?
is forign key will be unique key any table or not?
Is Exception handling possible in c language?