Explain how can you tell whether a program was compiled using c versus c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between union and structure in c?
why do some people write if(0 == x) instead of if(x == 0)?
What is use of null pointer in c?
implement NAND gate logic in C code without using any bitwise operatior.
How can you increase the allowable number of simultaneously open files?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Tell me about low level programming languages.
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Explain union.
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
Write a program in c to print * * * * * *******