How can variables be characterized?
No Answer is Posted For this Question
Be the First to Post Answer
Why we not create function inside function.
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
simple program of graphics and their output display
what different between c and c++
Explain what are bus errors, memory faults, and core dumps?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What are the application of void data type in c?
What are the back slash character constants or escape sequence charactersavailable in c?
How can I find the modification date and time of a file?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
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