prototype of sine function.
Answers were Sorted based on User's Feedback
Write a program to exchange two variaables without temp
Place the #include statement must be written in the program?
What is #error and use of it?
what is the difference between procedure oriented and object oriented progaming language
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
How to access or modify the const variable in c ?
16 Answers HCL, HP,
What is line in c preprocessor?
what is link list?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Do you know what is the purpose of 'extern' keyword in a function declaration?
Do you know pointer in c?
What is the use of printf() and scanf() functions?