What is variable initialization and why is it important?
No Answer is Posted For this Question
Be the First to Post Answer
What is scope rule in c?
write a program to swap two numbers without using temporary variable?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
When should you not use a type cast?
What is non linear data structure in c?
Explain what is wrong with this program statement? Void = 10;
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
What is meant by type casting?
What is c standard library?
What are the various types of control structures in programming?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }