What are the different types of objects used in c?
What is Full Form of C and Why We use C
write a program to rearrange the array such way that all even elements should come first and next come odd
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 are c preprocessors?
How many bytes are occupied by near, far and huge pointers (dos)?
What is an expression?
How are portions of a program disabled in demo versions?
Write a c program using for loop in switch case?
Explain what will the preprocessor do for a program?
Concat two string with most overlapped substring has to remove "abcd"+ "cdef" = "abcdef
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1