What is the main differences between C and Embedded C?
Answer Posted / dhanasekaran
Normal C finally needs for .exe file
Embedded C for .hex file
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
How can I recover the file name given an open stream or file descriptor?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Write a code on reverse string and its complexity.
What is file in c preprocessor?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is a null string in c?
What is operator precedence?
What do you mean by Recursion Function?
How can I manipulate individual bits?
What is ctrl c called?
Is int a keyword in c?
all c language question
How can I prevent another program from modifying part of a file that I am modifying?
When should the const modifier be used?