Why does notstrcat(string, "!");Work?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between getch() and getche()?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
what is c language.
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is typedef example?
How can I remove the trailing spaces from a string?
What is property type c?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
write a program to fined second smallest and largest element in a given series of elements (without sorting)
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.