Answer Posted / guest
because i think it is the perfect start for my future. and
think iwill gain a lots of experience by working in syntel
| Is This Answer Correct ? | 53 Yes | 22 No |
Post New Answer View All Answers
What is scope and lifetime of a variable in c?
What is a function in c?
What are the primitive data types in c?
What is an auto variable in c?
How can I use a preprocessorif expression to ?
what is the height of tree if leaf node is at level 3. please explain
Explain pointers in c programming?
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(); }
Describe static function with its usage?
Write a program to swap two numbers without using third variable?
What are variables c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Is register a keyword in c?
What is the benefit of using an enum rather than a #define constant?
Find MAXIMUM of three distinct integers using a single C statement