Answer Posted / ganesh
c is a language which is used to create the console applications.
| Is This Answer Correct ? | 7 Yes | 0 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); }
Is c still relevant?
What is the difference between void main and main in c?
What are variables and it what way is it different from constants?
What is function prototype in c language?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What are the primitive data types in c?
What is use of pointer?
Once I have used freopen, how can I get the original stdout (or stdin) back?
How do you generate random numbers in C?
What are the types of assignment statements?
What are multidimensional arrays?
How does sizeof know array size?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above