Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c x 9
c++ x 4
Member Avatar for ajaxjinx

Hi , I need to Assign 4 bits to unsigned char: I am using, unsigned short Ver : 4 ; My ques is ... howw do I initialize Ver , coz Ver=5 is not working.. If i need a type cast.. what will it be???

Member Avatar for ajaxjinx
0
185
Member Avatar for ajaxjinx

%token NUMBER %token LETTER %start cmd %% cmd: /*Blank*/ {printf("Blank, No command entered ");} | cmd_name args_list { char str[80]; strcpy (str,$1); strcat (str,'('); strcat (str,$2); strcat (str,')'); $$ = str; } ; cmd_name: string { $$ = $1;} string '.''.' { char str[80]; strcpy (str,$1); strcat (str,$2); strcat (str,$3); …

0
65
Member Avatar for sowmya nair

the problem is as follows: write a program:the array of integers indicating the marks of the students is given.u have to calculate the percentile of the student according to this rule:the percentile of a student is the % of number of student having marks less than him.for example: student marks …

Member Avatar for jimmymerchant
0
133
Member Avatar for ajaxjinx

Hey, Is there any equivalent of conio.h for Linux??? I basically want getche to work in linux.. Is there any alternate??

Member Avatar for ajaxjinx
0
140
Member Avatar for ajaxjinx

Hi, I am making a small software. As a part of the Command Line Interface I am supposed to include the "tab help facility" .Incase the user is typing a command and in between he presses the Tab key, the software should display all the avavilable commands. I am unable …

Member Avatar for vijayan121
0
938