Answer Posted / manisha thakur
in c is not a object oriented
in c++ is object oriented
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What are the types of data structures in c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Write a program to swap two numbers without using a temporary variable?
Does c have an equivalent to pascals with statement?
I have seen function declarations that look like this
Explain null pointer.
Why c is a procedural language?
What is the benefit of using #define to declare a constant?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
what is the different bitween abap and abap-hr?
Does * p ++ increment p or what it points to?
#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); }