Is boolean a datatype in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why is a semicolon (;) put at the end of every program statement?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
ABCDCBA ABC CBA AB BA A A
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
yogesh patil in dell
What are multibyte characters?
What is a const pointer in c?
What is a stream water?
. Explain the differences between fork() and exec() in C
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
How we can set and clear bit in a byte using macro function?