What is void c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
How variables are declared in c?
What does static variable mean in c?
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
What is data types?
What is pointers in c?
What is c preprocessor mean?
1. Write a program to reverse every second word in a given sentence.
What is 'bus error'?
what is the use of keyword volatile??
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; }
Function to find the given number is a power of 2 or not?