write a program to swap Two numbers without using temp variable.
Answer Posted / school
public class hack
{
magic printwall(the web must block);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does static variable mean in c?
What are high level languages like C and FORTRAN also known as?
Explain what are compound statements?
Is c weakly typed?
Explain what does the function toupper() do?
What is modeling?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
How do I use void main?
Which type of language is c?
Can true be a variable name in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What are different types of pointers?
What are the 4 types of functions?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result