What is pointer and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is n in c?
What is return type in c?
What is structure packing ?
What are the salient features of c languages?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
How can I access an I o board directly?
What is c language & why it is used?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What do you mean by scope of a variable in c?
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?
Three major criteria of scheduling.
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?