Answer Posted / raju thapa
TEAM -
T - Together
E - Everyone
A - Achieves
M - More
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
In a switch statement, explain what will happen if a break statement is omitted?
What are the different types of control structures?
What is formal argument?
How can a program be made to print the line number where an error occurs?
Why do we use int main?
#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 I discover how many arguments a function was actually called with?
Why we use void main in c?
What is 'bus error'?
How do we print only part of a string in c?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the c language function prototype?
write a program to find the given number is prime or not
What is an auto variable in c?
What is a dynamic array in c?