Explain what standard functions are available to manipulate strings?
No Answer is Posted For this Question
Be the First to Post Answer
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Is it possible to initialize a variable at the time it was declared?
say the following declaration is correct nr not. int b=a,n=0;
What are Macros? What are its advantages and disadvantages?
How to write a C program to determine the smallest among three nos using conditional operator?
where are auto variables stored? What are the characteristics of an auto variable?
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
How can we see the Expanded source code and compiled code for our source program in C?
List the difference between a While & Do While loops?
Why c is a procedural language?
how to write optimum code to divide a 50 digit number with a 25 digit number??