WHAT IS MEANT BY LIFE?
Answers were Sorted based on User's Feedback
Answer / chaudhery mohsin iftikhar
The meant by LIFE is "Learning is for eve"
| Is This Answer Correct ? | 0 Yes | 0 No |
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
What does c mean before a date?
How can you read a directory in a C program?
Differentiate Source Codes from Object Codes
What is c preprocessor mean?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
what is the structure pointer?
What are the functions to open and close file in c language?
Differentiate between the expression “++a” and “a++”?
what are the compilation steps? ( i want inside the compiler )
What is a example of a variable?