C programming 2021 Solution
2) WAP to display all the numbers from 100 to 200 divisible by 4 #include<stdio.h> void main(){ for(int i=100;i<=200;i++) i%4==0? printf(“%d “,i):i; } 3) Create a function int greater(int ,int ) that returns greater number. int greater(int a,int b){ return a>b? a : b; } 5)check if string is palindrome or not #include<stdio.h> #include<string.h> void […]
Continue Reading