related proverb of "dont count your chicken before it hatches"
How to write c functions that modify head pointer of a linked list?
Read two numbers from keyboard and find maximum of them?
write a c program for greatest of three numbers without using if statment
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(); }
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
WHO WROTE C LANGUAGE?
Should a function contain a return statement if it does not return a value?
How can you restore a redirected standard stream?
Explain what is meant by high-order and low-order bytes?
what is inline function?
What are operators in c?
Is c pass by value or reference?