-
Adithi. M. R started the topic If statement in java in the forum C Programming 2 years, 5 months ago
// Your First C++ Program
#include <iostream>
int main() {
std::cout << “Hello World!”;
return 0;
} -
Adithi. M. R started the topic Variables in java in the forum Microsoft Excel 2 years, 5 months ago
// Your First C++ Program
#include <iostream>
int main() {
std::cout << “Hello World!”;
return 0;
} -
Adithi. M. R started the topic Operators in java in the forum Microsoft Excel 2 years, 5 months ago
// Your First C++ Program
#include <iostream>
int main() {
std::cout << “Hello World!”;
return 0;
} -
Adithi. M. R wrote a new item 2 years, 5 months ago
// Your First C++ Program #include int main() { std::cout
-
Adithi. M. R wrote a new item 2 years, 5 months ago
// Your First C++ Program #include int main() { std::cout
-
Adithi. M. R started the topic While loop in the forum C++ 2 years, 5 months ago
// Your First C++ Program
#include <iostream>
int main() {
std::cout << “Hello World!”;
return 0;
} -
Adithi. M. R started the topic Operators in c++ in the forum C++ 2 years, 5 months ago
// Your First C++ Program
#include <iostream>
int main() {
std::cout << “Hello World!”;
return 0;
} -
Adithi. M. R started the topic Gutter margin in the forum Microsoft Word 2 years, 5 months ago
`#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf(“Hello, World!”);
return 0;
} -
Adithi. M. R started the topic Ribbon in the forum Microsoft Word 2 years, 5 months ago
`#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf(“Hello, World!”);
return 0;
} -
Adithi. M. R started the topic Cell address in the forum Microsoft Excel 2 years, 5 months ago
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf(“Hello, World!”);
return 0;
} -
Adithi. M. R started the topic Mail merge in the forum Microsoft Excel 2 years, 5 months ago
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf(“Hello, World!”);
return 0;
} -
Adithi. M. R started the topic Undo and redo in the forum Microsoft Excel 2 years, 5 months ago
To redo something you’ve undone, press Ctrl+Y or F4. (If F4 doesn’t seem to work, you may need to press the F-Lock key or Fn Key, then F4). If you prefer to use the mouse, click Redo on the Quick Access toolbar. (The Redo button only appears after you’ve undone an action.)
-
Adithi. M. R started the topic Text cell in the forum Microsoft Excel 2 years, 5 months ago
Format numbers as text
Select the cell or range of cells that contains the numbers that you want to format as text. How to select cells or a range. …
On the Home tab, in the Number group, click the arrow next to the Number Format box, and then click Text. -
Adithi. M. R started the topic Quick acess tollbar in ms Excel in the forum Microsoft Excel 2 years, 5 months ago
If the Quick Access Toolbar is shown, select Hide Quick Access Toolbar.
Image of option to hide the Quick Access Toolbar
If the Quick Access Toolbar is hidden, select Show Quick Access Toolbar.
Image of option to show the Quick Access Toolbar
Note: You can also hide the Quick Access
-
Adithi. M. R started the topic Hello world . C in the forum C Programming 2 years, 5 months ago
#include <stdio.h>
int main()
{
printf(“Hello%cworld.%c”,0x0A,0x0A);
printf(“Hello%cworld.%c”,10,10);
printf(“Hello%cworld.%c”,’n’,’n’);
return 0;
} -
Adithi. M. R wrote a new item 2 years, 5 months ago
#include int main() { // printf() displays the string inside quotation printf(“Hello, World!”); return 0; }
-
Adithi. M. R wrote a new item 2 years, 5 months ago
/* program without return function */ 123 void main() #include stdio.h 4 { in 5 int i; 6 fun(i); 7 printf(\”function called \”); 8 } 9 void fun(int i) 10 11 [ printf(\”%d\\n\”,i); 12 }
