Sponsored Content
Top Forums Programming Please Help ! ----> error: expected ‘=’, Post 302655213 by gameboy87 on Wednesday 13th of June 2012 01:50:35 AM
Old 06-13-2012
Error Please Help ! ----> error: expected ‘=’,

Code:
#include<stdio.h>
int main{
 char *fl;
 fl=(char*)malloc(150);
 strcat(fl,"/tmp/OV/");
 printf("\nInside fl--->%s\n",fl);
return 0;
}

I wrote a simple program as above. I got the error
Code:
error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token

Please help me out ! I am struck !Smilie

Last edited by Scott; 06-13-2012 at 03:09 AM.. Reason: Code tags, please...
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

arguments expected error

ive implemented getopt for the command line but have this problem, #!/bin/sh text="" set -- getopt "t" etc .... #sets arguments while : do case "$1" in #gets arguments -t: shift; text="$1" ;; shift done shift if then echo "no text" else echo... (4 Replies)
Discussion started by: strike
4 Replies

2. Shell Programming and Scripting

binary operator expected error

It is erroring for : binary operator expected on the if line. Any suggestions? Thanks in advence. (7 Replies)
Discussion started by: apps_user
7 Replies

3. Shell Programming and Scripting

ERROR: ./launch_full_backup.sh[18]: Syntax error at line 28 : `else' is not expected.

Help please! :confused: I have the following error with the following file and the emails are not arriving to the email, any idea please? ERROR: ./launch_full_backup.sh: Syntax error at line 28 : `else' is not expected. FECHA=`date +%d%m%y%H%M`... (2 Replies)
Discussion started by: villenan
2 Replies

4. Shell Programming and Scripting

Receiving error: ./ang.ksh[35]: 0403-057 Syntax error at line 116 : `done' is not expected.

Hi All I am quite new to Unix. Following is a shell script that i have written and getting the subject mentioned error. #!/bin/ksh #------------------------------------------------------------------------- # File: ang_stdnld.ksh # # Desc: UNIX shell script to extract Store information.... (3 Replies)
Discussion started by: amitsinha
3 Replies

5. Shell Programming and Scripting

fi not expected error

I'm trying this script and I keep getting a 'fi' not expected error: #!/bin/sh #TD=0 CT=0 cat P7748 |while read LINE do # Check to see if the LINE is non-empty, and has a <td> tag in it. if # Increase the TD counter by 1 CT=`echo "$CT+1" |bc` ... (2 Replies)
Discussion started by: dba_frog
2 Replies

6. Shell Programming and Scripting

if stmt argument expected error

CT=0 while read LINE do # Check to see if the LINE is non-empty, and has a <td> tag in it. if then # Increase the TD counter by 1 CT=`echo "$CT+1"` fi done <test.htmthrows this error: ksh: test: argument expected test.htm <tr> <td>text</td... (4 Replies)
Discussion started by: dba_frog
4 Replies

7. Shell Programming and Scripting

integer expected error::please help ...urgent

I have written the following shell script for submitting check to nagios .It was working fine a few hours ago.I don remember what changes i made and its giving integer expression expected error. #!/bin/bash #$PGREP ${SSHD} if ] then echo "ssh down" ... (1 Reply)
Discussion started by: nasir_khan
1 Replies

8. Shell Programming and Scripting

Error: integer expression expected

root@server01 # df -h | grep /tmp | awk {'print $3}' 252M root@server01 # root@server01 # cat /usr/local/tmpchk.sh #!/bin/sh x=`df -h | grep /tmp | awk {'print $3}'` if ; then rm -fr /tmp/somefolder/ else echo "its small" (2 Replies)
Discussion started by: fed.linuxgossip
2 Replies

9. Programming

Synchronization of threads C. Error: Expected ')' before ';'

Hi, I'm trying to solve an assignement on school where we are supposed to synchronize two threads and write out their ID every other time. I've written down the code for the two threadFunctions which is associated with two threads created in the main function. What I'm trying to achieve... (5 Replies)
Discussion started by: sjallamander
5 Replies

10. Shell Programming and Scripting

ERROR: `(' is not expected.

Hi All, I have written a shell script which works all right on bash shell, but when it comes to execute it using ksh on AIX it gives the following error::( bash$ /bin/ksh getShortInfo.sh getShortInfo.sh: syntax error at line 26 : `(' unexpected Could you please indicate what is... (4 Replies)
Discussion started by: Elvis
4 Replies
STRING(3)						     Library Functions Manual							 STRING(3)

NAME
string, strcat, strncat, strcmp, strncmp, strcpy, strncpy, strlen, index, rindex - string operations string, strcat, strncat, strcmp, strncmp, strcpy, strncpy, strlen, strchr, strrchr, strerror, memcmp, memcpy, memmove, memchr, memset, index, rindex - string operations SYNOPSIS
#include <sys/types.h> #include <strings.h> char *strcat(char *s1, const char *s2) char *strncat(char *s1, const char *s2, size_t n) int strcmp(const char *s1, const char *s2) int strncmp(const char *s1, const char *s2, size_t n) char *strcpy(char *s1, const char *s2) char *strncpy(char *s1, const char *s2, size_t n) size_t strlen(const char *s) char *strchr(const char *s, int c) char *strrchr(const char *s, int c) char *strerror(int errnum) int memcmp(const void *s1, const void *s2, size_t n) void *memcpy(void *s1, const void *s2, size_t n) void *memmove(void *s1, const void *s2, size_t n) void *memchr(const void *s, int c, size_t n) void *memset(void *s, int c, size_t n) char *index(const char *s, int c) char *rindex(const char *s, int c) DESCRIPTION
These functions operate on null-terminated strings. They do not check for overflow of any receiving string. Strcat appends a copy of string s2 to the end of string s1. Strncat copies at most n characters. Both return a pointer to the null-termi- nated result. Strcmp compares its arguments and returns an integer greater than, equal to, or less than 0, according as s1 is lexicographically greater than, equal to, or less than s2. Strncmp makes the same comparison but looks at at most n characters. Strcpy copies string s2 to s1, stopping after the null character has been moved. Strncpy copies exactly n characters, truncating or null- padding s2; the target may not be null-terminated if the length of s2 is n or more. Both return s1. Strlen returns the number of non-null characters in s. Strchr (strrchr) returns a pointer to the first (last) occurrence of character c in string s, or null if c does not occur in the string. Strerror returns the error string for the system call error errnum. See intro(2). Memcmp is like strcmp except that the strings are memory blocks of length n. Null characters are treated as ordinary characters. Memcpy copies n bytes from the location pointed to by s2 to s1. Memmove is like memcpy, except that it can handle overlap between the two strings. Both functions return s1. Memchr returns a pointer to the first occurrence of character c in string s, or null if c does not occur in the string. Memset sets n bytes to c starting at location s. It returns s. Index and rindex are obsolete versions of strchr and strrchr. New code should avoid using them. NOTES
Characters are compared as unsigned char, whether char itself is signed or not. 4th Berkeley Distribution May 15, 1985 STRING(3)
All times are GMT -4. The time now is 05:06 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy