i got 75% in all semester am i eligible for your company
No Answer is Posted For this Question
Be the First to Post Answer
Is there anything like an ifdef for typedefs?
What is structure and union in c?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
How does #define work?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the condition that is applied with ?: Operator?
How to set a variable in the environment list?
Function to find the given number is a power of 2 or not?
How to delete a node from linked list w/o using collectons?
Where register variables are stored in c?
What is function definition in c?