Click here to Skip to main content
15,899,754 members

Comments by Rahul Dicholkar (Top 4 by date)

Rahul Dicholkar 4-Jun-21 13:04pm View    
thankyou sir for you help
Rahul Dicholkar 4-Jun-21 11:26am View    
float_bit_return(*(int*)&f, n));
why there is need to pass the address of f and what is the importance of typecasting ?
Rahul Dicholkar 4-Jun-21 11:26am View    
float_bit_return(*(int*)&f, n));
why there is need to pass the address of f and what is the importance of typecasting ?
Rahul Dicholkar 29-May-21 1:58am View    
sir the above code throws an error:
error: too many arguments to function ‘getchar’
50 | getchar(c);
| ^~~~~~~
In file included from class.c:1:
/usr/include/stdio.h:492:12: note: declared here
492 | extern int getchar (void);
also scanf("%32[^\n]", name[i]); will ensure that in each row more than 32 characters are not added but how to make sure where the total number of characters in all the rows are not more than 32?