Explain what is the use of a semicolon (;) at the end of every program statement?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to interchange two variables without using the third variable?
17 Answers Accenture, College School Exams Tests, Infotech,
What is a const pointer, and how does it differ from a pointer to a const?
what is the coding of display the factorial of a number using array and function?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
What is encapsulation?
Where are some collections of useful code fragments and examples?
What does static variable mean in c?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
What is the Difference between Class and Struct?
Tell about strtok & strstr functions
2 Answers HCL, iFlex, Motorola,
What is the difference between realloc() and free()
what will be maximum number of comparisons when number of elements are given?