Answer Posted / rina
bitwise shift operators
&,|,^,<<,>>
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
Is c procedural or object oriented?
How do I round numbers?
Why do we use int main instead of void main in c?
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
Are there constructors in c?
What is the advantage of a random access file?
What is meant by type specifiers?
Calculate 1*2*3*____*n using recursive function??
What is indirection? How many levels of pointers can you have?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Can i use “int” data type to store the value 32768? Why?
How are structure passing and returning implemented?
What is new line escape sequence?
What is the use of c language in real life?
What is else if ladder?