What are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
In a byte, what is the maximum decimal number that you can accommodate?
What is the size of structure pointer in c?
Is there anything like an ifdef for typedefs?
what is meant by c
Why malloc is faster than calloc?
When should volatile modifier be used?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
What is gets() function?
name the language for writing c compiler?
what is the diference between pointer to the function and function to the pointer?
What is meant by type specifiers?
a value that does not change during program execution a) variabe b) argument c) parameter d) none