What is meant by 'bit masking'?
No Answer is Posted For this Question
Be the First to Post Answer
Write a small C program to determine whether a machine's type is little-endian or big-endian.
what is linkage error when it occurs in c program
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Explain the advantages and disadvantages of macros.
What is modifier & how many types of modifiers available in c?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
Explain null pointer.