Write a program on swapping (100, 50)
No Answer is Posted For this Question
Be the First to Post Answer
what is ANSI and ISO
What does d mean?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
What are the different types of linkage exist in c?
how to find sum of 5 digits in C?
write a progam to compare the string using switch case?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
c program to input values in a table(using 2D array) and print odd numbers from them
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
i want to know aptitude questions,technical questions
What are the key features in c programming language?
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }