Answers for "how to define a declaration in c"

C
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