Read two numbers from keyboard and find maximum of them?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
Why main is used in c?
what is the difference between postfix and prefix unary increment operators?
Is null a keyword in c?
What are the types of assignment statements?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
What are control structures? What are the different types?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..