Write a program to swap two numbers without using a temporary variable?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
What is wild pointer in c with example?
What is file in c preprocessor?
How do I convert a string to all upper or lower case?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
What is function in c with example?
what do the 'c' and 'v' in argc and argv stand for?
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
What does node * mean?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
write a program wch produces its own source code aas its output?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none