Answer Posted / vignesh1988i
1) pointers which points to a value indirectly through that variable containing that value..... so pointers are used for data security.
2) only by using pointers through functions we can return MORE THAN ONE VALUE AT A TIME.....
3) as above told execution will be faster.....
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is malloc calloc and realloc in c?
What is the difference between single charater constant and string constant?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
p*=(++q)++*--p when p=q=1 while(q<=6)
write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.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. 3.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(i.e.,the original ASCII equivalent plus the random integer)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. 4.Dislay 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 decodingas was used in encoding.
What is the difference between fread buffer() and fwrite buffer()?
Explain what is wrong in this statement?
Explain how to reverse singly link list.
What are dangling pointers? How are dangling pointers different from memory leaks?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
In C language, a variable name cannot contain?
I have a varargs function which accepts a float parameter?
What is double pointer in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;