How to declare a variable?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What does the error 'Null Pointer Assignment' mean and what causes this error?
without a terminator how can we print a message in a printf () function.
What is the purpose of sprintf?
Explain what is meant by high-order and low-order bytes?
Do you know null pointer?
int i=10; printf("%d %d %d", i, i=20, i);