What is null character in c?
two variables are added answer is stored on not for third variable how it is possible?
#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?
What is pre-emptive data structure and explain it with example?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
Write a function to find the area of a triangle whose length of three sides is given
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
What are the benefits of c language?
Find the highest of three numbers and print them using ascending orders?
What is LINKED LIST? How can you access the last element in a linked list?
How does C++ help with the tradeoff of safety vs. usability?