Answer Posted / hema
0
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How can I make it pause before closing the program output window?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
#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 can you find out how much memory is available?
Explain is it valid to address one element beyond the end of an array?
Why calloc is better than malloc?
Explain pointer. What are function pointers in C?
Why does the call char scanf work?
What is the meaning of typedef struct in c?
What is identifiers in c with examples?
What is line in c preprocessor?
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
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
How do we print only part of a string in c?