Sunday, 8 December 2019

* symple program of C? Add two numbers..

 #include<stdio.h>

#include<conio.h>

void main

{

int a,b,s;

printf("Enter two no:");

scanf("%d%d",&a,&b);

s=a+b;

printf("sum of numbers:%d",s);

getch();

}

Program to check whether the reverse string is a palindrome

  # include < stdio.h > # include < string.h > int main ( ) { //declare variables char str1 [ 30 ] ; int i , len...