What do header files do?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Why c++ is called c++ and not c+?
What is a volatile keyword in c?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
write a c program to find biggest of 3 number without relational operator?
Explain the difference between structs and unions in c?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
where does it flourished?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
Do you know the purpose of 'register' keyword?