Answers for "declaration in c"

C
3

define in c

#define CNAME value
Posted by: Guest on February-22-2020
2

declare variable in c

int    i, j, k;
char   c, ch;
float  f, salary;
double d;
Posted by: Guest on June-09-2020
0

declaration in c

#include<stdio.h>
#include<conio.h>
void main()
{
//variable declaration
	int a;
  //assinging value to a variable;
    a=10;
}
Posted by: Guest on September-14-2020

Code answers related to "C"

Browse Popular Code Answers by Language