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 |
What is an identifier?
Explain void pointer?
What are the key features of C?
Difference between constant pointer and pointer to a constant.
c program to subtract between two numbers without using '-' sign and subtract function.
What are integer variable, floating-point variable and character variable?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
what is the difference between malloc() and calloc() function?
What is the restrict keyword in C?
Define the scope of static variables.
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.