what is disadvantage of pointer in C
Answer Posted / saroun
i think that disadvantage is security. how means using
pointer concept we can change the value which is assigned to
it.like this we lose our data.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the scope of global variable in c?
What is echo in c programming?
How can I find the modification date of a file?
What does a function declared as pascal do differently?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Is array a primitive data type in c?
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
Add Two Numbers Without Using the Addition Operator
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Is a pointer a kind of array?
What does *p++ do?
What are the header files used in c language?
What is the use of bitwise operator?