What is difference between class and structure?
No Answer is Posted For this Question
Be the First to Post Answer
What does %p mean c?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is d'n in c?
how do you programme Carrier Sense Multiple Access
What are the types of type specifiers?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Write a program to reverse a linked list in c.
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
What is a structure member in c?
Discuss the function of conditional operator, size of operator and comma operator with examples.
How do you convert strings to numbers in C?