What is the use of a static variable in c?
write a c program for greatest of three numbers without using if statment
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
Write a program which returns the first non repetitive character in the string?
Write a program to generate prime factors of a given integer?
How can I allocate arrays or structures bigger than 64K?
Is multithreading possible in c?
What is c standard library?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
What is ponter?
Give me the code of in-order recursive and non-recursive.
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Define Array of pointers.