Answer Posted / sanjana
C is a context sensitive language
| Is This Answer Correct ? | 14 Yes | 9 No |
Post New Answer View All Answers
#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); }
How many identifiers are there in c?
Explain what is a stream?
Why pointers are used?
What is size of union in c?
Write a program to print “hello world” without using semicolon?
What is #define?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How can I avoid the abort, retry, fail messages?
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 difference between array and structure in c?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is meant by keywords in c?
What is calloc in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given