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 |
Explain what is wrong with this statement? Myname = ?robin?;
What is the memory allocated by the following definition ? int (*x)();
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
Explain what is the benefit of using an enum rather than a #define constant?
What does nil mean in c?
What does the file stdio.h contain?
Why is sprintf unsafe?
How do you print only part of a string?
advantages of pointers?
Explain what is a program flowchart and explain how does it help in writing a program?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
how to count no of words,characters,lines in a paragraph.