The operation of a stair case switch best explains the
a) or operation b) and operation
c)exclusive nor operation d)exclusive or operation
Which of the following is/are syntactically correct?
a) for(); b) for(;); c) for(,); d) for(;;);
Answer / mrs. poonam vikram singh bhat
The operation of a stair case switch best explains the
a) or operation b) and operation
c)exclusive nor operation d)exclusive or operation :
Solution:
d)
-----------------------------
Which of the following is/are syntactically correct?
a) for(); b) for(;); c) for(,); d) for(;;);
Solution:
d)
| Is This Answer Correct ? | 26 Yes | 4 No |
What is #line used for?
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
When should the register modifier be used? Does it really help?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
What do you mean by c what are the main characteristics of c language?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What does the c preprocessor do?
What is default value of global variable in c?
What is the advantage of a random access file?
progrem to generate the following series 1 12 123 1234 12345
How can I read in an object file and jump to locations in it?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);