while initialization of array why we use a[][2]
why not a[2][]...?
No Answer is Posted For this Question
Be the First to Post Answer
Is it possible to run a c program without using main?If yes HOW??
Explain about the functions strcat() and strcmp()?
What is the purpose of realloc()?
Write a code to generate a series where the next element is the sum of last k terms.
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
Implement bit Array in C.
Explain modulus operator. What are the restrictions of a modulus operator?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
What is d scanf?
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
What is the c value paradox and how is it explained?