What are the 5 data types?
No Answer is Posted For this Question
Be the First to Post Answer
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
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?
What are the languages are portable and platform independent?Why they are like that?
What is pointer in c?
State two uses of pointers in C?
What is the purpose of scanf() and printf() functions?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
What math functions are available for integers? For floating point?
Program to find the value of e raised to power x using while loop
How do you print only part of a string?
can we store values and addresses in the same array? explain