C Programing

Write a program to generate a following numbers triangle:

Write a program to generate a following numbers triangle:    (Where user entered number through keyboard, for example if num=5)                         1                         12                         123                         1234…

Difference Between Compiler and Interpreter

Compiler vs Interpreter Compiler and interpreter, both basically serve the same purpose. They convert one level of language to another level. A compiler converts the high level instructions into machine language while an interpreter …

Introducation to computers

Computer systems A Computer is an electronic device which performs operations such as accepts data as an input, store the data, manipulate or process the data and produce the result as an output. Main task performed by a computer • Accept the da…

a c program to implement an array

#include "stdio.h" #include "conio.h" #define MAX 5 void insert ( int *, int pos, int num ) ; void del ( int *, int pos ) ; void reverse ( int * ) ; void display ( int * ) ; void search ( int *, int num ) ; void main( ) { int ar…

C program to convert binary number to decimal

C code for decimal to binary conversion: #include int main(){ long int decimalNumber,remainder,quotient; int binaryNumber[100],i=1,j; printf("Enter any decimal number: "); scanf("%ld",&decimalNumber); quoti…

stack

In computer science , a stack is a last in, first out ( LIFO ) abstract data type and linear data structure . A stack can have any abstract data type as an element , but is characterized by two fundamental operations, called push and pop (or pull). …

write a c program to perform binary search

In computer science , a binary search or half-interval search algorithm finds the position of a specified value (the input "key") within a sorted array . In each step, the algorithm compares the input key value with the key value of th…

C tutorial

INTRODUCTION AND BACKGROUND OF C TheC programming language was originally developed by Dennis Ritchie of Bell Laboratories, and was designed to run on a PDP-11 with a UNIX operating system. Although it was originally intended to run under UNIX, there …

The Top Seven C Interview Questions in IT Interviews

Here I will Post some of the c programming interview questions which are frequently asked in every IT Interview, Use and suggest me for better posts like this Ques 1: - Explain the use of this pointer ? Ans: - The this keyword is used to represent…

C,C++ Interview Questions

Click Here To Downlode paper-1 paper-2 Paper-3 paper-4

Load More
That is All