Do character constants represent numerical values?
main() { clrscr(); } clrscr();
How can I direct output to the printer?
What is ## preprocessor operator in c?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What is structure packing ?
Tell me what are bitwise shift operators?
what is the difference b/w compiler and debugger?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
Find greatest number out of 10 number without using loop.
Why is c not oop?
What is int main () in c?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above