-1

I am new to Linux C programming. And I am used to Visual Studio intellisense which can prompt function name and parameter list after I typing a few letters. Is there C IDE that can do similar things for library functions? Suppose I have composed the include paths properly.

I tried KDevelop. But it failed to identify the printf and similar functions. (And some UI bugs also - the Solve button I guess).

enter image description here

smwikipedia
  • 61,609
  • 92
  • 309
  • 482
  • 3
    Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. – too honest for this site Sep 02 '15 at 15:12
  • You should only ask if you are lost. This is not for parallel-processing. – too honest for this site Sep 02 '15 at 15:18

2 Answers2

1

Use NetBeans. It supports c, c++ and can prompt library functions. Install, and press CTRL+SPACE to list library functions, class, etc.

also: C++ IDE for Linux?

Besides everything.. why you don't just type:

$: vim

in terminal to get best editor? ; )

Community
  • 1
  • 1
nanomader
  • 410
  • 9
  • 22
1

Have you tried CLion? It's powerful cross-platform IDE. It's free for students.

fatihbozik
  • 51
  • 1
  • 4