illustrate the use of address operator and dereferencing
operator with the help of a program
guys plzzz help for this question
No Answer is Posted For this Question
Be the First to Post Answer
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
How do you define CONSTANT in C?
what is c language.
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Write a function to find the area of a triangle whose length of three sides is given
What is a null pointer in c?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
different between overloading and overriding
Ow can I insert or delete a line (or record) in the middle of a file?
Explain what is the difference between text files and binary files?