which one is highest Priority in c?
a)=,b)+,c)++,d)==
Answers were Sorted based on User's Feedback
What are the string functions? List some string functions available in c.
What is the purpose of realloc()?
1. Write a program to reverse every second word in a given sentence.
What is the c value paradox and how is it explained?
why arithmetic operation can’t be performed on a void pointer?
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
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
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
Explain the use of 'auto' keyword
Explain #pragma in C.
How to calculate sum
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.