Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached

7 Posted Topics

Member Avatar for gplkrsna

Hi All, Hi All, I'm trying to execute a vbscript programme, on execution I'm getting following error, can you please help me in coming out of the problem. "Wrong number of arguments or invalid property assignment: wsh" CODE snippet: [CODE]Set xl=createobject("excel.application") Set wb=xl.workbooks.open(testset) xl.visible=true Set wsh=wb.WorkSheets(1) <------- ERROR is seen …

Member Avatar for gplkrsna
0
104
Member Avatar for gplkrsna

Hi, Problem: I have two libraries with two different queue implementations. but with same structure name as "queuetype". Now if I include both of the header files in my code, compilation will go for toss saying "error: conflicting types for 'queuetype' " I need to include both the files. How …

Member Avatar for Narue
0
135
Member Avatar for nathanurag

Hi, Just one correction in your program. You doesn't need to call getchar() twice, in your case, you are skipping every next character read by using second getchar()(second getchar() read into 'c' is overwritten by first getchar()) in the for loop. exact program will be: [CODE] #include<stdio.h> void reverse(char s[], …

Member Avatar for nathanurag
0
325
Member Avatar for gplkrsna

Hi friends, My GNU Screen(process) is struck at write() system call. I tried to attach strace to the process. here is the output. *************************************** $ /usr/bin/strace -ivx -p 5477 (screen pid) Process 5477 attached - interrupt to quit [008fb7a2] write(4, "\x0d\x1b\x5b\x33\x39\x42\x1b\x5b\x37\x6d\x53\x77\x69\x74"..., 4020 <unfinished ...> Process 5477 detached *************************************** Can somebody …

0
153
Member Avatar for gplkrsna

Hi, Is there a possibility of creating fixed length file in C and when the file is filled up with the contents to the limit of it's size then it should wrap up to include the new contents? Thanks.

Member Avatar for csurfer
0
104
Member Avatar for gplkrsna

Hi Friends, I need a clarification on /etc/passwd file. Can it have same user name entry two times, if so what is the use of it. I see it applying the first entry's configuration only. What is the use of second entry with different configuration. Can somebody please clarify about …

Member Avatar for Fest3er
0
174
Member Avatar for gplkrsna

Hi, I have a doubt, in the following program, it prints the string returned by throwstring()function. Is the string which the function is returning is local to the function or outside of the function? Can somebody throw light on underlying mechanism.. [code=c] main() { char* throwstring(); printf("%s\n", throwstring()); } char …

Member Avatar for Narue
0
154

The End.