What is scanf_s in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
what are the various memory handling mechanisms in C ?
What does the file stdio.h contain?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
what is the importance of spanning tree?
write a programe to find the factorial of given number using recursion
What is the equivalent code of the following statement in WHILE LOOP format?
How do you print only part of a string?
Describe the steps to insert data into a singly linked list.
What is a function in c?