June 23, 2017
Chandrabhushan kumar
Related Posts:
C Operator : C Programming C Programming C Operators An operator is the symbol that take one or more than one operand and perform operation on it. Ex. int a,b, c; a=10,b=20; c=a+b;&n… Read More
Accept Argument And Also Return : C Programming C Programming Accept Argument And Also Return … Read More
FIRST PROGRAM IN C: C PROGRAM FIRST PROGRAM IN C: C PROGRAM #include<stdio.h> #include<conio.h> void main() { printf("Welcome to the world of Computer Science.\n"); printf("No Doubt It's field is very big."); getch(… Read More
Write a C program to input a no and check it negative or positive no. : C Programming C Programming Write a C program to input a no and check it negative or positive no. void main() { int a; printf("Enter a no."); scanf("%d",&a); if(a printf("Negative No."); } else { printf("Positive … Read More
INTRODUCTION TO C PROGRAMMING INTRODUCTION TO C PROGRAMMING: C is a general-purpose, procedural computer programming language supporting structured programming. A successor to the programming language B, C was originally developed at Bell La… Read More