do you think its fraud or original company?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
what is unsigened char and what is the difference from char
How many identifiers are there in c?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
How can I do graphics in c?
what is the difference between %d and %*d in c languaga?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
how to find out the union of two character arrays?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
write a program to generate address labels using structures?
is c language is a object oreinted language?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }