Write A Program Without Using Subtraction Operator
#include<stdio.h>
#include<conio.h>
int main(){
int l,m;
int sum;
printf("Enter any two integers: ");
scanf("%d%d",&l,&m);
sum = l+ ~m + 1;
printf("Difference of two integers: %d",sum);
getch();
}
7/20/2013 11:14:00 pm Unknown 0 Comments
Fundamentals of C Language Tutorial#1
Programe to print the value of EOF
Code Of This Shape . 1***** 12**** 123*** 1234** 12345* 123456
Write a program in C language to add two numbers using pointers
Write a program in c language to reverse a string using recursion.
Create a class of student, get student name and age and print on screen using setter and getter function.
Write a program that will determine the prime factors of a specified factorial
Write a program in c language to compare two strings without strcmp function or any other function
Print Counting From 1 to 100 without Loop