-
Dhaarani started the topic how to rise Modulo division by one ? in the forum C++ 2 years, 5 months ago
void Act() override {
….
// If the value type is a vector, and we allow vector select,
// then in 50% of the cases generate a vector select.
if (isa<FixedVectorType>(Val0->getType()) && (getRandom() % 1)) {
unsigned NumElem =
cast<FixedVectorType>(Val0->getType())->getNumElements();
CondTy = FixedVectorType::get(CondTy,…[Read more] -
Dhaarani wrote a new item 2 years, 5 months ago
There is a major difference between C and C++. The C language is a procedural one that provides no support for objects and classes. On the other hand, the C++ language is a combination of object-oriented and […]
-
Dhaarani started the topic How to insert the header file in Ms word? in the forum Microsoft Word 2 years, 5 months ago
create your own header or footer by selecting Edit Header or Edit Footer. When you’re done, select Close Header and Footer or press Esc.
-
Dhaarani wrote a new item 2 years, 5 months ago
If you already have text separated by tabs, you can quickly convert it to a table.
-
Dhaarani wrote a new item 2 years, 5 months ago
In your document contains multiple sections, how the new margins apply only to the selected sections.?
-
Dhaarani started the topic How to format style in word document? in the forum Microsoft Word 2 years, 5 months ago
On the Home tab, right-click any style in the Styles gallery and click Modify. In the Formatting section, make any formatting changes you want, such as font style, size, or color, alignment, line spacing, or indentation. Choose whether the style change applies to the current document or to all future documents.
-
Dhaarani started the topic How to insert text in paragraph? in the forum Microsoft Word 2 years, 5 months ago
Adding a <p> opening tag and a </p> closing tag turns each text block into a paragraph. With the code below, we’d have exactly the result we want: 2 headings, the first of which (“Polar bear”) is bigger than the other. Clearly separated paragraphs.
-
Dhaarani wrote a new item 2 years, 5 months ago
Is all the complex number functions accept “i” and “j” for suffix, but neither “I” nor “J”?. Using uppercase results in the #VALUE! Shows error value. All functions that accept two or more complex numbers require […]
-
Dhaarani started the topic Insert, delete or replace cell content in the forum Microsoft Excel 2 years, 5 months ago
Overtype mode can be turned on or off only when you are in Edit mode. When Overtype mode is turned on, the character to the right of the insertion point is highlighted in the formula bar, and it will be overwritten when you type.
-
Dhaarani started the topic String to functions in c in the forum C Programming 2 years, 5 months ago
To pass a one dimensional string to a function as an argument we just write the name of the string array variable.
In the following example we have a string array variable message and it is passed to the displayString function.
#include <stdio.h>
void displayString(char []);
int main(void) {
char
message[] = “Hello World”;…[Read more] -
Dhaarani wrote a new item 2 years, 5 months ago
If you’re experiencing high CPU usage, why Excel might crash due to insufficient resources?. When usually happens if you’ve added animations to your spreadshee
-
Dhaarani started the topic Decision making statment in the forum C Programming 2 years, 5 months ago
In the case of decision control statements in C language (nested if and if-else), a group of available statements will get executed in case the conditions we have are true. The execution of the else part statements won’t occur whenever these available conditions happen to be false.
-
Dhaarani started the topic Merge and u merge in Microsoft excel in the forum Microsoft Excel 2 years, 5 months ago
When you merge multiple cells, the contents of only one cell (the upper-left cell for left-to-right languages, or the upper-right cell for right-to-left languages) appear in the merged cell. The contents of the other cells that you merge are deleted.
-
Dhaarani wrote a new item 2 years, 5 months ago
#include #include int main() { char nickname[20]; printf(“Enter your Nick name:”); scanf(“%s”, nickname); printf(“%s”,nickname); return 0; }
-
Dhaarani wrote a new item 2 years, 5 months ago
