Can we initialize extern variable in c?


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

Post New Answer

More C Interview Questions

void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }

9 Answers  


Ow can I insert or delete a line (or record) in the middle of a file?

0 Answers  


How do you view the path?

0 Answers  


Write a c program to demonstrate Type casting in c?

2 Answers  


How do you write a program which produces its own source code as output?

0 Answers  


#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  


HOW TO HANDLE EXCEPTIONS IN C

8 Answers  


If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..

0 Answers   IBM, Wipro,


Which is best linux os?

0 Answers  


What is d scanf?

0 Answers  


write an algorithm and a program to count the number of elements in a circularly singly linked list

1 Answers   Ignou,


What are the advantages and disadvantages of a heap?

0 Answers  


Categories