Why we use stdio h in c?
No Answer is Posted For this Question
Be the First to Post Answer
what are the stoge class in C and tel the scope and life time of it?
question-how to run a c programme.
Why does not use getgh(); and <conio.h> in c language.
What is I ++ in c programming?
what is the hardware model of CFG( context free grammar)
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
what is the code for getting the output as * ** ***
Describe the order of precedence with regards to operators in C.
Write a C program to find the smallest of three integers, without using any of the comparision operators.
what is the flow of execution in cprogram? ex:printf();,scanf();
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }