Answers for "how to define in c"

C
1

c define

#define SIZE 42
#define MSG "Hello, World!"
Posted by: Guest on August-05-2020
1

#define in c

#include <stdio.h>

#define NAME "TechOnTheNet.com"
#define AGE 10

int main()
{
   printf("%s is over %d years old.n", NAME, AGE);
   return 0;
}
Posted by: Guest on September-24-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