write a program to generate address labels using structures?
No Answer is Posted For this Question
Be the First to Post Answer
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What is C language ?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Describe the order of precedence with regards to operators in C.
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
What is the real time usage volatile?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
write a program to find lcm and hcf of two numbers??
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
what is the use of #pragma pack, wer it is used?