main()
{
enum _tag{ left=10, right, front=100, back};
printf("%d, %d, %d, %d", left, right, front, back);
}
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
how to use virual function in real time example
Differentiate b/w Modify and Update commands giving example.
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is a pointer in c?
Is c still used in 2019?
Write a Program to accept different goods with the number, price and date of purchase and display them
Why can't we initialise member variable of a strucutre
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
Can include files be nested? How many levels deep can include files be nested?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What is the use of f in c?