Write a program to print “hello world” without using semicolon?
No Answer is Posted For this Question
Be the First to Post Answer
What are runtime error?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
How can I open a file so that other programs can update it at the same time?
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What are the preprocessor categories?
what r the cpu registers r ther?
main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }
What is the default value of local and global variables in c?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
What are bit fields? What is their use?
where are auto variables stored? What are the characteristics of an auto variable?