Explain how can type-insensitive macros be created?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is the symbol indicated the c-preprocessor?
What is structure padding and packing in c?
What is the general form of function in c?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
what is the stackpointer
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
how can make variable not in registers
what is a void pointer?
Not all reserved words are written in lowercase. TRUE or FALSE?