Explain how do you print only part of a string?
No Answer is Posted For this Question
Be the First to Post Answer
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
Is using exit() the same as using return?
what is the mean of c languages.
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Write a program to generate prime factors of a given integer?
What is string concatenation in c?
What are the types of macro formats?
what do you mean by defining a variable in our c code?
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
Explain what is the use of a semicolon (;) at the end of every program statement?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
How can I increase the allowable number of simultaneously open files?