gcc -print-libgcc-file-name
print current library search paths and their order:
ld --verbose | grep "search"
show all files succeessfully opened during linking:
gcc dummy.c -wl,--verbose | grep succeeded
show the linker path:
gcc -print-prog-name=ld
show detailed information:
gcc -v dummy.c
IBM QISKit 中一些有用的功能
以下幾種函式都針對的是qiskit 0.7版本。1.circuit.depth 用你的量子電路的名字代替 circuit 就可以測出量子電路的深度。非常簡單好用。2.job monitor 當我們在ibm的量子晶元上執行量子演算法的時候,乙個很大的問題是我們在等待結果時,不知道現在是還在排隊等待使用...
工作中一些簡單但是有用的SQL
1.刪除乙個表中重複的記錄,只留一條記錄。delete from fcm phonenum e where e.rowid select min x.rowid from fcm phonenum x where x.phonenum e.phonenum 2.給乙個表做備份 create tabl...
一些有用的函式
1.memset pbuffer,0,pbuffer length 初始化一段記憶體空間,初始值為0 2.sprintf pbuffer,fomatstring,作用和printf差不多,不同的是輸出到指定的快取pbuffer中,而不是輸出到dos控制台。3.sscanf pbuffer,fomat...