Good links
C standards
http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf
This blog is for those who love C programing
C standards
http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf
Posted by Amit K Sharma (xamitx) at 9:11 PM
No Output is :
string = (null) , data = 0
This will core
As we are accessing value at NULL ptr n (int type )
-------------------------
------------------
Posted by Amit K Sharma (xamitx) at 1:33 AM
Output:
A E
----------------------------------
OUTPUT:
ffff , -1
ffff , -1
---------------------------------------
OUTPUT:
on
Catch: Note the assignment statement returns the assigned value
----------------------------------
printf("%d\n",printf("%d%d",2,2) & printf("%d%d", 2, 2));
OUTPUT :22222
int *p[10];
printf("%d %d\n",sizeof(*p),sizeof(p));
OUTPUT 4 40
-------------------------------------------------------------
OUTPUT:
val 6
val after pre 6
val 6
val after post 7