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);
}
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
When can a far pointer be used?
When should a far pointer be used?
How to write a multi-statement macro?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
Write a factorial program using C.
I came across some code that puts a (void) cast before each call to printf. Why?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
Describe advantages and disadvantages of the various stock sorting algorithms
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them