cavium networks written test pattern ..
No Answer is Posted For this Question
Be the First to Post Answer
what is ans for this scanf(%%d",c);
Why is %d used in c?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
how many times of error occur in C
How do you define a function?
What does char * * argv mean in c?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What are header files and explain what are its uses in c programming?
How is a null pointer different from a dangling pointer?
What are pointers in C? Give an example where to illustrate their significance.
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
How do you redirect a standard stream?