Write programs for String Reversal & Palindrome check
No Answer is Posted For this Question
Be the First to Post Answer
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
Is stack a keyword in c?
What is class and object in c?
What is structure padding in c?
write a c program to print "Welcome" without using semicolon in the whole program ??
to convert a string without using decrement operater and string functions
If errno contains a nonzero number, is there an error?
how can i calculate mean,median,mode by using c program
What do you mean by scope of a variable in c?
what is the difference between NULL('\0') and 0?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>