i want to job in your company, so how it will be possible.
Answers were Sorted based on User's Feedback
Answer / rakesh ranjan
THIS QUESTION DOESNT BELONGS TO TECHNICAL SECTION SO PLEASE AVOID SUCH KINDS OF QUERIES HERE........................................................................................THANXXXX
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the mean of this statement:: if(int i=0 * i=9)
write a program to copy a string without using a string?
What is optimization in c?
Explain data types & how many data types supported by c?
Write an interactive c program that will encode or decode a line of text. To encode a line of text, proceed as follows: Convert each character, including blank spaces, to its ASCII equivalent. Generate a positive random integer. Add this integer to the ASCII equivalent of each character. The same random integer will be used for the entire line of text. Suppose that N1 represents the lowest permissible value in the ASCII code, and N2 represents the highest permissible value. If the number obtained in step 2 above exceeds N2, then subtract the largest possible multiple of N2 from this number, and add the remainder to N1. Hence the encoded number will always fall between N1 and N2, and will therefore always represent some ASCII character. Display the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text. Be certain, however, that the same random number is used in decoding as was used in encoding.
1 Answers Amazon, CSJM, HCL, Microsoft, TCS, Wipro,
How can I access a memory located at certain address?
How would you write qsort?
What are the different types of pointers?
Write a program to implement queue.
what is a void pointer?
why we use "include" word before calling the header file. is there any special name for that include??????
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }