Can a variable be both constant and volatile?
What standard functions are available to manipulate strings?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
How is pointer initialized in c?
What will happen when freeing memory twice
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
Explain how do you search data in a data file using random access method?
What does typeof return in c?
What does. int *x[](); means ?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is the difference between the expression “++a” and “a++”?
Explain what is the difference between a string and an array?