What is the output of below code?
main() { static int a=5; printf("%3d",a--); if(a) main(); }
How is a macro different from a function?
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
what is array?
What are file streams?
Can a pointer point to null?
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
Why calloc is better than malloc?
read an array and search an element
When was c language developed?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
Do you know null pointer?
how can I convert a string to a number?