-
Sowmiya S started the topic What are static variables and functions? in the forum C++ 2 years, 5 months ago
-
Sowmiya S started the topic What are the common built-in data types in Python? in the forum C++ 2 years, 5 months ago
-
Sowmiya S started the topic What is Scope in Python? in the forum C++ 2 years, 5 months ago
-
Sowmiya S started the topic What is the cell address in excel in the forum Microsoft Excel 2 years, 5 months ago
A cell reference,also renowned as a cell address, is a scalar quantity that is used in a worksheet to identify a single cell. Each cell reference starts with a letter and comes to an end with a number
-
Sowmiya S started the topic What is the variable and constants? in the forum C Programming 2 years, 5 months ago
#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 a : %a n”,a);
return 0;
}
