What is the difference between the expression “++a” and “a++”?
No Answer is Posted For this Question
Be the First to Post Answer
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
Why does this code crash?
What is I ++ in c programming?
Which is better pointer or array?
Please write the area of a RIGHT ANGLED TRIANGLE.
What is the meaning of c in c language?
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
a simple program in c language
What are 'near' and 'far' pointers?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
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.