What is the benefit of using const for declaring constants?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why string is used in c?

0 Answers  


What is sorting in c plus plus?

0 Answers  


create an SINGLE LINKED LISTS and reverse the data in the lists completely

3 Answers  


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

1 Answers  


What will the preprocessor do for a program?

0 Answers   Aspire, Infogain,


What does the function toupper() do?

0 Answers  


Write a C program to print 1 2 3 ... 100 without using loops?

15 Answers   Hindalco,


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100

1 Answers  


Why c is called object oriented language?

0 Answers  


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

0 Answers  


Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.

0 Answers   Amazon,


What are bitwise shift operators in c programming?

0 Answers  


Categories