What is the output of printf("%d", printf("Hello"));?
Differentiate between the expression “++a” and “a++”?
What are header files why are they important?
What are examples of structures?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
Can we add pointers together?
Write the Program to reverse a string using pointers.
What are the disadvantages of external storage class?
Is c language still used?
What is structure in c definition?
What is graph in c?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
how to impliment 2 or more stacks in a single dimensional array ?