Why is it important to memset a variable, immediately after
allocating memory to it ?
No Answer is Posted For this Question
Be the First to Post Answer
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
write a program to display the array elements in reverse order in c language
differentiate built-in functions and user – defined functions.
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
Why doesnt that code work?
What is the advantage of c?
Can we initialize extern variable in c?
What are the key features in c programming language?
Explain what are the standard predefined macros?
Difference between exit() and _exit() function?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
Write a program to print ASCII code for a given digit.