What is the difference between the local variable and global variable in c?


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

Post New Answer

More C Interview Questions

Do pointers take up memory?

0 Answers  


What is the difference between new and malloc functions?

0 Answers   InterGraph,


size maximum allocated by calloc()

3 Answers   DELL,


#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?

6 Answers   Ramco,


What are the 5 types of organizational structures?

0 Answers  


What is unary operator?

0 Answers  


what is the difference between char * const and const char *?

2 Answers   TCS,


How to draw the flowchart for structure programs?

0 Answers  


nic scientist exam

1 Answers   NIC,


what is a headerfile?and what will be a program without it explain nan example?

6 Answers   Assurgent,


write a program to display reverse of a number using for loop?

14 Answers  


write a C program to print the program itself ?!

16 Answers   TCS,


Categories