In a switch statement, what will happen if a break statement is omitted?
No Answer is Posted For this Question
Be the First to Post Answer
What are pragmas and what are they good for?
Find the highest of three numbers and print them using ascending orders?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
How can a program be made to print the line number where an error occurs?
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
Hi can anyone tell what is a start up code?
#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?
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
Differentiate b/w Modify and Update commands giving example.
What is the purpose of ftell?
main difference between c and c++ language
What is the difference between malloc calloc and realloc in c?