application attempts to perform an
operation?
No Answer is Posted For this Question
Be the First to Post Answer
Explain enumerated types in c language?
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; }
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,
what is the difference between class and unio?
c program to print a name without using semicolon
What is the real time usage volatile?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
How do you determine if a string is a palindrome?
how can I convert a string to a number?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above