application areas a 'c'
a) operating system
b) graphics, interpreter, assembler
c) program evalution, communication softwares
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
What is this infamous null pointer, anyway?
can you change name of main()?how?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is the difference between a function and a method in c?
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
Explain how to reverse singly link list.
what are the stages of compilation
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
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,
how would a 4*3 array A[4][3] stored in Row Major Order?