Is c is a high level language?
No Answer is Posted For this Question
Be the First to Post Answer
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
how to find out the inorder successor of a node in a tree??
what is the difference between declaration and definition of a variable or function ?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
How do we open a binary file in Read/Write mode in C?
How many types of operator or there in c?
who developed c and why he developed c?
define function
What is a example of a variable?
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,