What are the back slash character constants or escape sequence charactersavailable in c?
No Answer is Posted For this Question
Be the First to Post Answer
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
List a few unconditional control statement in c.
how to capitalise first letter of each word in a given string?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
what is the benefit of c30
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is the difference between procedural and declarative language?
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
Why is c known as a mother language?
What is the use of typedef in c?
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.