What are the different types of pointers used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
What is the difference between far and near ?
What are the general description for loop statement and available loop types in c?
Explain what does the function toupper() do?
What is structure in c definition?
If the size of int data type is two bytes, what is the range of signed int data type?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
What is the most efficient way to count the number of bits which are set in an integer?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What are types of preprocessor in c?
What is the advantage of c?