What is logical error?
No Answer is Posted For this Question
Be the First to Post Answer
why array index always starts from zero??
Identify the operators that is not used with pointer a. && b. # c. * d. >>
How many identifiers are there in c?
What is getch() function?
What the advantages of using Unions?
#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 cohesion and coupling in c?
Write a program to show the change in position of a cursor using c
How can a string be converted to a number?
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
Write a program in C to convert date displayed in gregorian to julian date