Skip to main content
Search
Search This Blog
Livecodo
Pages
Home
Courses
Blog
About us
More…
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
April 10, 2024
Write a c program to demonstrate pre-processor directives Macros
#include
#define A 10 #define B 20 int main() { int a,b; a=A+B; b=A-B; printf("addition is %d\n",a); printf("addition is %d",b); return 0; }
Popular Posts
March 26, 2024
Dynamic Memory allocation in C
May 18, 2024
Searching and sorting Algorithm in C