• func and func()
    Hi All, let a function prototype is : bit func(); Now if it is used as follows (inadvertently) then what would it do ?? Why not the complier throws an error ?? if (func) { ... ... } else...
  • problem with FUNC
    I always get an error 129 (missing ';' before 'void') when I compile in this part: func void iicstart (void) { sda = 1; scl = 1; del4us () sda = 0; del4us () scl = 0; del4us () } what...
  • compiler expecting an expression with func pntrs
    Hello all, I am porting 'C' code from another Cortex-M project to the Keil uVision (V4.72.10.0). This code made liberal use of function pointers, which were happily compiled by the other build system...
  • the func pointer used in the keil.
    Dear all, Who can help me the following question. I had wrote three routine,such as: void p1(void) { printf("1!\n"); } void p2(void) { printf("2!\n"); } void p3(void) { printf...
  • query:definition of func in C
    Hi all include<stdio.h> #define .... void xyz(); <---- i am referring to this defn of xyz() void abc() { -:statements:- } void main() { abc(); xyz(); } void xyz() { -:statements...