What is array in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to exchange two variaables without temp
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
how to go with this?
Which is more efficient, a switch statement or an if else chain?
Explain the difference between struct and union.
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.
How to implement variable argument functions ?
related to rdbms query .
What is the purpose of main( ) in c language?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
An array name contains base address of the array. Can we change the base address of the array?
What is typedef struct in c?