What is a structure and why it is used?
No Answer is Posted For this Question
Be the First to Post Answer
1. Write a program to reverse every second word in a given sentence.
Explain what are header files and explain what are its uses in c programming?
Is stack a keyword in c?
How do you write a program which produces its own source code as output?
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>
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?
why ordinary variable store the later value not the initial
count the numbers between 100 and 300, that star with 2 and ends with 2
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
What is modifier & how many types of modifiers available in c?
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....