March 2018
A for loop is a repetition control structure that allows you to efficiently write a loop that needs to execute a specific number of times.SyntaxSyntaxThe...
C Program To Show Square Of Numbers And Find Their Sum#include<stdio.h>int main(){ int i=1,n,sq,sum=0; printf("Enter number:\n"); scanf("%d",&n);...
Basic Concept Of FunctionA function is a block of code that performs a specific task. Every C program has at least one function, which is main(),...
Page 1 of 341234567...34Next »Last