Difference between C and Embedded C?
Answer / anitya
In C We can not address the Bit value.
In Embedded C we can Address the Bit value.
| Is This Answer Correct ? | 3 Yes | 1 No |
Write a program to check palindrome number in c programming?
Differentiate between calloc and malloc.
Can math operations be performed on a void pointer?
What are directives in c?
Which built-in library function can be used to match a patter from the string?
write program on arrays
Is c high or low level?
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
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?
Explain what are global variables and explain how do you declare them?
Explain the difference between null pointer and void pointer.
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none