how can f be used for both float and double arguments in printf? Are not they different types?
No Answer is Posted For this Question
Be the First to Post Answer
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Explain following declaration int *P(void); and int (*p)(char *a);
what is the function of void main()?
What does 4d mean in c?
How to avoid buffer overflow?
who is the editor of 'pokemon'?
What is a class?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Can you subtract pointers from each other? Why would you?
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.