swap 2 numbers without using third variable?
No Answer is Posted For this Question
Be the First to Post Answer
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
What is meaning of tree
What's the right way to use errno?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
writ a program to compare using strcmp VIVA and viva with its output.
What's the best way to declare and define global variables?
How can you check to see whether a symbol is defined?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
What is new line escape sequence?