I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
No Answer is Posted For this Question
Be the First to Post Answer
how many errors in c explain deply
How to declare pointer variables?
What is scope and lifetime of a variable in c?
What does nil mean in c?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
What is the difference between declaring a variable and defining a variable?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
What is a shell structure examples?
what is uses of .net
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.