What is extern keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Explain how does flowchart help in writing a program?
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
What functions are in conio h?
what will be the output for the following main() { printf("hi" "hello"); }
Write a program to swap two numbers without using a temporary variable?
Why do we use static in c?
is forign key will be unique key any table or not?
How can you draw circles in C?
difference between function & structure
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
What is the method to save data in stack data structure type?