What will be the result of the following C language program?
main()
{
int a = 0; int b = 20; char x = 1; char y = 10;
if(a,b,x,y)
printf("Welcome");
}
What are void pointers in c?
how to make program without <> in library.
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What are the features of c language?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
progrem to generate the following series 1 12 123 1234 12345
How do I read the arrow keys? What about function keys?
What is linear search?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is the difference between typedef and #define?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
why do we use # in c-language?