What is the use of f in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
7 Answers Cadence, JNTU, Zen Technologies,
what are two categories of clint-server application development ?
What are the loops in c?
write a program to display numbers from 1 to 10 and 10 to 1?
Define circular linked list.
Which command is more efficient? *(ptr+1) or ptr[1]
What is the difference between array and pointer?
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(); }
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
What are runtime error?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Is there a built-in function in C that can be used for sorting data?