What is C language ?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
What does *p++ do?
how to find the kth smallest element in the given list of array elemnts.
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
How can a program be made to print the line number where an error occurs?
Write a C program that reads a series of strings and prints only those ending in "ed"
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
How many types of operators are there in c?
what is the difference between while and do while?
What is the meaning of int *x[]();?
How can you convert integers to binary or hexadecimal?
How can you find the exact size of a data type in c?