Answer Posted / santhosh
This Might Help You ...
http://user-interfaze.blogspot.com/2012/01/c-program-to-reverse-string-word-by.html
| Is This Answer Correct ? | 0 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); }
What is the function of multilevel pointer in c?
What’s the special use of UNIONS?
Why enum is used in c?
Describe the order of precedence with regards to operators in C.
What does c mean?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is meant by type casting?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
List a few unconditional control statement in c.
Is c dynamically typed?
Explain main function in c?
what is use of malloc and calloc?
write a program to concatenation the string using switch case?
Is c# a good language?