int i=10;
printf("%d %d %d", i, i=20, i);
No Answer is Posted For this Question
Be the First to Post Answer
What is the size of empty structure in c?
What are control structures? What are the different types?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
Explain what are binary trees?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
What's the total generic pointer type?
Can we include one C program into another C program if yes how?
What is 2 d array in c?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }