main()
{
int i = 10;
printf(" %d %d %d
", ++i, i++, ++i);
}
No Answer is Posted For this Question
Be the First to Post Answer
c program to arrange digits in a no in ascending and descending order
What is the difference between malloc() and calloc() function in c language?
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
How do you view the path?
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
How to define structures? ·
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
#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
Write the syntax and purpose of a switch statement in C.
How the processor registers can be used in C ?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples