why r u join this company? give solid resons.
Answer Posted / harrie007
To pursue a dynamic and challenging career with your
esteemed organization of , it will give me value addition
to my career as well as will also offer opportunity to
enhance my professional skills.
| Is This Answer Correct ? | 30 Yes | 2 No |
Post New Answer View All Answers
Write a program to print all permutations of a given string.
Tell me when is a void pointer used?
What is volatile variable how do you declare it?
What is the use of a semicolon (;) at the end of every program statement?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
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); } }
difference between object file and executable file
What is declaration and definition in c?
What is the use of linkage in c language?
What is the difference between malloc() and calloc() function in c language?
Is register a keyword in c?
What are qualifiers and modifiers c?
C language questions for civil engineering
Why is c fast?
What are the string functions? List some string functions available in c.