If the size of int data type is two bytes, what is the range of signed int data type?
No Answer is Posted For this Question
Be the First to Post Answer
What does %d do?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
read a number & print all its devisors using c-program?
Is register a keyword in c?
what is data structure.in linear and non linear data structures which one is better?Explain
how to multiply two number taking input as a string (considering sum and carry )
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Can 'this' pointer by used in the constructor?
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
how can u print a message without using any library function in c
How do you define structure?
The statement, int(*x[]) () what does in indicate?