What is string concatenation in c?
No Answer is Posted For this Question
Be the First to Post Answer
#define f(x) main() { printf("\n%d",f(2+2)); }
Define the scope of static variables.
how to find greatet of 10 numbers without using array?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
What is the use of gets and puts?
Write a C program to count the number of email on text
How to write a C program to determine the smallest among three nos using conditional operator?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
c program to manipulate x=1+3+5+...+n using recursion
write a c program to find the probability of random numbers between 1-1000
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Explain the use of #pragma exit?