What is wrong with this program statement? void = 10;
No Answer is Posted For this Question
Be the First to Post Answer
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; }
Write a program to find the biggest number of three numbers in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
write a program to swap two numbers without using temporary variable?
Explain what are the __date__ and __time__ preprocessor commands?
What is the use of typedef in structure in c?
How can you avoid including a header more than once?
what is the difference between structure and union?
Write a program in c using only loops to print * * * * * *******
write a program to find the largest and second largest integer from an array
What does void main return?