bug-cflow
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-cflow] Occurrence of a single function


From: Debajyoti Majumdar
Subject: [bug-cflow] Occurrence of a single function
Date: Thu, 3 Dec 2015 14:20:18 +0530

Hello..
suppose in my c code if the same function is called again and again, the
output of cflow has only one occurrence of that particular code.
Why is it so?

Eg: my test code is:
  1 #include<stdio.h>
  2 int main(){
  3         printf("hello ");
  4         printf("world");
  5
  6
  7
  8 return 0;
  9 }
~                
output is:

main() <int main () at /home/deb/test.c:2>:
    printf()


Shouldn't the ouput have 2 occurrences of printf()?


reply via email to

[Prev in Thread] Current Thread [Next in Thread]