cavium networks written test pattern ..
No Answer is Posted For this Question
Be the First to Post Answer
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
When do we get logical errors?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
How can I write a function analogous to scanf?
How are Structure passing and returning implemented by the complier?
Why is sprintf unsafe?
Write a C program in Fibonacci series.
What are preprocessor directives?
What is wrong in this statement? scanf(“%d”,whatnumber);
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
Are c and c++ the same?
Describe how arrays can be passed to a user defined function