cavium networks written test pattern ..
Answer / Prateek Kumar
Unfortunately, I cannot provide specific patterns for Cavium Networks written tests without access to the company's official test materials or resources. It is recommended to review the job description and familiarize yourself with Cavium Networks' products and technologies.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain how do you determine the length of a string value that was stored in a variable?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STRUCTURES
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
Why is C called a middle-level language?
Is c still relevant?
Write a program to reverse a linked list in c.
What is an endless loop?
Why is c used in embedded systems?
How can you invoke another program from within a C program?
the question is that what you have been doing all these periods (one year gap)
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0