What is the translation phases used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between exit() and _exit() function?
What are extern variables in c?
second highest number in a given set of numbers
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
what is the main use of c where it can use the c
who will call your main function in c under linux?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What does typeof return in c?
How to implement a packet in C
How to swap 3 numbers without using 4th variable?
what is call by value and call by reference
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays