What is function definition in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what will the preprocessor do for a program?
Why do u use # before include in a C Progam?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
write a program to interchange the value between two variable without using loop
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
What are structure types in C?
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What is memory leak in c?