WAP in C to Addition without using third variable January 27, 2019 #include<stdio.h> void main () { int a , b , ; printf ( "Enter the Frist no. = " ); scanf ( "...Read More
WAP in C to addition two numbers January 27, 2019 #include<stdio.h> void main () { int a , b ,c ,; printf ( "Enter the Frist no." ); scanf ( "...Read More
How to write Program in C to Print 'Hello' January 25, 2019 This program to print Hello in C program. #include<stdio.h> void main() { printf("Hello"); return 0; ...Read More