What are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Is c weakly typed?
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is the value of c?
Is c object oriented?
How does memset() work in C?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Write a Program to accept different goods with the number, price and date of purchase and display them
What is the use of keyword VOLATILE in C?
Explain the use of 'auto' keyword
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above