What are identifiers c?
No Answer is Posted For this Question
Be the First to Post Answer
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What are the disadvantages of c language?
What is a structure and why it is used?
What are the types of i/o functions?
What are different storage class specifiers in c?
What is the difference between exit() and _exit() function?
Explain what does a function declared as pascal do differently?
swap two integer variables without using a third temporary variable?
What are the advantages of c language?
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
Explain Function Pointer?