int i=~0;
uint j=(uint)i;
j++;
printf(“%d”,j);



int i=~0; uint j=(uint)i; j++; printf(“%d”,j);..

Answer / srilaxmi

2

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More C Interview Questions

What are the features of the c language?

0 Answers  


What is Memory leakage ?

2 Answers   HCL,


6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()

2 Answers   Accenture,


What is the difference between c and python?

0 Answers  


Can I pass constant values to functions which accept structure arguments?

2 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100

1 Answers  


which types of data structure will i use to convert infix to post fix???

5 Answers   IIT,


What are pointers in C? Give an example where to illustrate their significance.

0 Answers   Wipro,


What is clrscr ()?

0 Answers  


What are qualifiers and modifiers c?

0 Answers  


what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }

1 Answers   Google,


Explain how can I read and write comma-delimited text?

0 Answers  


Categories