-
Pavatharni . S wrote a new item 2 years, 6 months ago
public class FindingVowels { public static void main(String args[]) { String str = new String(“Hi Welcome to Tutorialspoint”); for(int i=0; i
-
Pavatharni . S started the topic Oops in c++ in the forum C++ 2 years, 6 months ago
What is the C++ OOPs concept
-
Pavatharni . S started the topic Ms word in the forum Microsoft Word 2 years, 6 months ago
How you can collapse or expand parts of a document? …
-
Pavatharni . S started the topic Text cells in the forum Microsoft Excel 2 years, 6 months ago
It is beneficial to learn how to modify the text in a cell’s orientation more easily.
-
Pavatharni . S started the topic an expression that operates on values in a range of cells. in the forum Microsoft Excel 2 years, 6 months ago
an expression that operates on values in a range of cells.
-
Pavatharni . S started the topic swap two number without third variable in the forum C Programming 2 years, 6 months ago
#include<stdio.h>
#include<conio.h>
void main() {
int a, b;
printf(“enter the value of a: “);
scanf(“%d”, & a);
printf(“enter the value of b: “);
scanf(“%d”, & b);
a = a – b;
b = a + b;
a = b – a;
printf(“After swapping n”);
printf(“value of a is : %d n”, a);
printf(“value of b is : %d “, b);
getch();
}
