Can you assign a different address to an array tag?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of using Unions?
What are the general description for loop statement and available loop types in c?
write a programming in c to find the sum of all elements in an array through function.
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
what are brk, sbrk?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain what is the benefit of using enum to declare a constant?
Write down the program to sort the array.
Where static variables are stored in c?
Is void a keyword in c?