which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What are logical errors and how does it differ from syntax errors?
Explain what is the most efficient way to store flag values?
What is the size of enum in bytes?
How can I change the size of the dynamically allocated array?
How can a program be made to print the line number where an error occurs?
What is string in c language?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is meant by 'bit masking'?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is the best style for code layout in c?
Do you have any idea how to compare array with pointer in c?
What is the purpose of scanf() and printf() functions?
Does * p ++ increment p or what it points to?
What are structures and unions? State differencves between them.