An instruction which is analysed and acted upon by the processor prior to the compiler going its work
a) directive
b) constructive
c) constant
d) absolute mode
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between procedural and functional programming?
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
What is use of pointer?
what is constant pointer?
what is ans for this scanf(%%d",c);
How can I automatically locate a programs configuration files in the same directory as the executable?
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
change to postfix a/(b+c*d-e)
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
Why clrscr is used after variable declaration?