write a c program to print the next of a particular no
without using the arithmetic operator or looping statements?
Answer / sumanta mahapatra
we can do dis using increment operator....
main()
{
int x,y;
x=5;
y=++x;
printf("%d",y);
}
Is This Answer Correct ? | 7 Yes | 3 No |
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
Why is struct padding needed?
How are structure passing and returning implemented?
Explain the array representation of a binary tree in C.
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
Create a simple code fragment that will swap the values of two variables num1 and num2.
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
Linked lists -- can you tell me how to check whether a linked list is circular?
explain what are actual arguments?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
How do I create a directory? How do I remove a directory (and its contents)?
What is key word in c language?