A collection of data with a given structure for excepting storing and providing on demand data for multiple users
a) linked list
b) datastructer
c) database
d) preprocessor
what is c
How to add two numbers with using function?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is variables in c?
what type of questions arrive in interview over c programming?
what is object oriental programing?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Is it possible to run using programming C for Java Application?
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);
What is wrong with this initialization?