Most answered questions in Programming in C

26 votes
5 answers
45
Choose the best matching between the programming styles in Group 1 and their characteristics in Group 2.$$\begin{array}{|ll|ll|}\hline \rlap{\textbf{Group 1}} & & \rlap{...
2 votes
4 answers
53
#include <stdio.h int main() { unsigned char a = 5; a |= (1<<((sizeof(char)<<3)-1)); char b = a; printf("%d %d\n",b,a); printf("%u %u\n",b,a); }If the size of a char data...
3 votes
4 answers
54
2 votes
4 answers
55
output of program:void function(int); void main() { function(3); } void function(int num){ if(num>0) { function( num); printf("%d",num); function( num); } }will the argum...
0 votes
4 answers
56
1 votes
4 answers
58
The infix form of the following postfix form ‘P’will beP: 3 , 5 , 7 , – , 10 , + , 4 , / , /(a) 3 / 5 – 7 + 10 / 4 (b) (((3 + 5) – (7 / 10 ))/ 4)(c) (3 / (((5 �...
3 votes
4 answers
60