int i=3; this declaration tells the C compiler to
a) reserve space in memory to hold the integer value
b) associate the name i with this memory location
c) store the value 3 at this location
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
What is a wrapper function in c?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
How many levels deep can include files be nested?
I want tcs placement papers of 2004-2009 , its urgent
WHAT IS ABSTRACT DATA TYPE
What is integer constants?
application of static variables in real time
How is a macro different from a function?
how c source file in converted to exe file
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
how to find out the union of two character arrays?