What does %c do in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to swap two numbers without using third variable in c?
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
which operator is known as dummy operator in c?
program to find the roots of a quardratic equation
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
0 Answers College School Exams Tests,
What is the total generic pointer type?
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
main() { int i=400,j=300; printf("%d..%d"); }
show how link list can be used to repersent the following polynomial i) 5x+2
how to get starting address of a running C program
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
Why doesn't the code "a[i] = i++;" work?