how is the examination pattern?
No Answer is Posted For this Question
Be the First to Post Answer
How to explain the final year project as a fresher please answer with sample project
what is meant by the "equivalence of pointers and arrays" in C?
write a progam to compare the string using switch case?
What is methods in c?
write a c program to check weather a particluar bit is set or not?
What is the difference between %d and %*d in C
What is nested structure with example?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Why can arithmetic operations not be performed on void pointers?
What are reserved words?
Can you please compare array with pointer?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }