Can a variable be both const and volatile?


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

Post New Answer

More C Interview Questions

In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping

0 Answers  


What are runtime error?

0 Answers  


What are c identifiers?

0 Answers  


What is the condition that is applied with ?: Operator?

0 Answers  


a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f

0 Answers   TCS,


#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  


is it possible to create your own header files?

0 Answers  


2. What does static variable mean?

2 Answers  


write a programe to find the factorial of given number using recursion

3 Answers  


largest Of three Number using without if condition?

0 Answers  


Explain threaded binary trees?

0 Answers  


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

0 Answers  


Categories