Explain what standard functions are available to manipulate strings?
No Answer is Posted For this Question
Be the First to Post Answer
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
Explain the properties of union.
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
what is the difference between NULL & NUL keywords in C?
What are register variables? What are the advantage of using register variables?
write a program to print infinte number
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
What is masking?
How can you invoke another program from within a C program?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
Difference between for loop and while loop?
Why main function is special give two reasons?