What will the code below print when it is executed?
int x = 3, y = 4;
if (x = 4)
y = 5;
else
y = 2;
printf ("x=%d, y=%d
",x,y);
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?
How many bytes are occupied by near, far and huge pointers (dos)?
how will you write a program on linked lists using JAVA programming???????????
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
Write a program to compute the following 1!+2!+...n!
Wt are the Buses in C Language
What is the right way to use errno?
write an algorithm to display a square matrix.
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
What are local variables c?
What are the different properties of variable number of arguments?
what is a function pointer and how all to declare ,define and implement it ???