What is the size of enum in bytes?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
Tell me can the size of an array be declared at runtime?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(“%d”,x); }
What does 1f stand for?
Write a C program that reads a series of strings and prints only those ending in "ed"
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
What is sparse file?
Explain c preprocessor?
Explain what are reserved words?
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
What do you mean by invalid pointer arithmetic?