what is the differnce between programing langauge and tool?
is sas is a programing langauge r tool?
No Answer is Posted For this Question
Be the First to Post Answer
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
What is const keyword in c?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
write a c programme for add of two numbers with out use of arthematic operators
whether itis a structured language?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.
3 Answers Google, Infosys, JTL, OpenFeel,
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
what is the most appropriate way to write a multi-statement macro?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.