what is the associativity of bitwise OR operator?
why programming language C is still used in operating system's kernel??
Write a small C program to determine whether a machine's type is little-endian or big-endian.
What is time null in c?
Explain what are the __date__ and __time__ preprocessor commands?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
Which is best book for data structures in c?
What is non linear data structure in c?
What is the difference between malloc calloc and realloc in c?
What is the scope of static variables in c language?
#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 diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
what is different between auto and local static? why should we use local static?