Login
C Programming
1)
How will you free the allocated memory ?
A)
remove(var-name);
B)
free(var-name);
C)
delete(var-name);
D)
dalloc(var-name);
Next
Show Answer:
Show Answer
More Question
The library function used to find the last occurrence of a character in a string is
Point out the error in the following program. #includestdio.hint main() struct emp char name[20]; float sal; ; struct emp e[10]; int i; for(i=0; i=9; i++) scanf(s f, e[i].name, &e[i].sal); return 0;
In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators.
Which of the following errors would be reported by the compiler on compiling the program given below #includestdio.hint main() int a = 5; switch(a) case 1: printf(First); case 2: printf(Second); case 3 + 2: printf(Third); case 5: printf(Final); break; return 0;
Bit fields CANNOT be used in union.