What is a header file?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between memcpy and memmove?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
what is the associativity of bitwise OR operator?
can we implement multi-threads in c.
write a program to display the numbers having digit 9 in the given range from 1 to 100
Given an unsigned integer, find if the number is power of 2?
What is an anonymous union and where to apply that ?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
prototype of sine function.
What is the difference between local variable and global variable in c?
Explain what is the difference between the expression '++a' and 'a++'?
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?