What does volatile do?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is #line used for?
What is p in text message?
Is null always defined as 0(zero)?
can we store values and addresses in the same array? explain
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
How to write a program to receive an integer & find its octal equivalent by using for loop?
When should we use pointers in a c program?
Find occurence of a character in a sting.
What are global variables and how do you declare them?
What is wrong with this program statement?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }