There seem to be a few missing operators ..
No Answer is Posted For this Question
Be the First to Post Answer
What are conditional operators in C?
How to print "I Love My India" without using semi colon?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
What is define directive?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
Is c++ based on c?
What is an volatile variable?
What are local static variables?
How can I copy just a portion of a string?