This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 77499 - Separating long string is incorrect for C
Summary: Separating long string is incorrect for C
Status: RESOLVED DUPLICATE of bug 87586
Alias: None
Product: cnd
Classification: Unclassified
Component: Editor (show other bugs)
Version: 5.x
Hardware: All All
: P4 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-07 09:34 UTC by soldatov
Modified: 2006-10-20 07:44 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description soldatov 2006-06-07 09:34:15 UTC
I want to create this C program:
--------------------------------
#include <stdio.h>

int main(void) {
    char *r = "ab\
cd";
    printf("%s", r);
    return(0);
}

--------------------------------
I type 'char *r = "ab\' and press <Enter>
Appear this string:
    char *r = "ab\" +
    "
But It is strange string for C (It is string from Java)
Comment 1 soldatov 2006-10-20 07:44:46 UTC

*** This issue has been marked as a duplicate of 87586 ***