-
Kaavya wrote a new item 3 months, 3 weeks ago
How can you unlock restricted Editing in MS Word?
-
Kaavya wrote a new item 3 months, 3 weeks ago
How can we edit PDF documents in MS Word?
-
Kaavya wrote a new item 3 months, 3 weeks ago
How can we connect with cloud service on MS word 2013?
-
Kaavya wrote a new item 3 months, 3 weeks ago
How can you create cross-referencing in MS Word?
-
Kaavya wrote a new item 3 months, 3 weeks ago
Can you create shortcuts for most frequently used formulas?
-
Kaavya wrote a new item 3 months, 3 weeks ago
How will you fetch the current date in Excel?
-
Kaavya wrote a new item 3 months, 3 weeks ago
How do you perform a horizontal lookup in Excel?
-
Kaavya wrote a new item 3 months, 3 weeks ago
What will you do if you want to change either the column letter or the row number but not both?
-
Kaavya wrote a new item 3 months, 3 weeks ago
What is bool in C++?
-
Kaavya wrote a new item 3 months, 3 weeks ago
How to dynamically allocate a 2d array in C++?
-
Kaavya wrote a new item 3 months, 3 weeks ago
How to call a base class constructor from a derived class in C++?
-
Kaavya wrote a new item 3 months, 3 weeks ago
What is the concept of oops in C++?
-
Kaavya wrote a new item 3 months, 3 weeks ago
what is the program to add two number using recursion in C?
-
Kaavya wrote a new item 3 months, 3 weeks ago
What is the explanation for modular programming in C language?
-
Kaavya wrote a new item 3 months, 3 weeks ago
What is the process to generate random numbers in C programming language?
-
Kaavya wrote a new item 3 months, 3 weeks ago
What is the difference between formulas and functions in Excel?
-
Kaavya wrote a new item 3 months, 3 weeks ago
How do you use wildcards with VLOOKUP?
-
Kaavya wrote a new item 3 months, 3 weeks ago
What happens when you check the Defer Layout Update option present in the PivotTable Fields window?
-
Kaavya started the topic Decision making overview in C in the forum C Programming 3 months, 3 weeks ago
Int he below code, semi-colon is missing after the printf and scanf statement in the 5th and 6th line of the code respectively. The return statement is also missing at the end of the program.
#include<stdio.h>
main()
{
int a;
printf(“enter your age:”)
scanf(“%d”, &a)
if (a>=18)
{
printf(“eligible to vote”);
}…[Read more] -
Kaavya replied to the topic C Programming Data Types. new line code typed wrong in the forum C Programming 3 months, 3 weeks ago
The code to type the text in a new line is wrong. Instead of n there is just n as shown below.
#include <stdio.h>
int main () {
/* variable definition */
int x, y;
int z;
float a;
/* initialization */
x = 7;
y = 4;
z = x + y;
printf(“value of z : %d n”, z);
a = 8.2/2;
printf(“value of a : %a n”, a);…[Read more] - Load More