What is c language used for?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
how does printf function work
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
what is difference b/w extern & volatile variable??
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is the difference between far and near in c?
what are bit fields in c?
Give a method to count the number of ones in a 32 bit number?
What is ## preprocessor operator in c?
What is n in c?