What is wrong in this statement?
No Answer is Posted For this Question
Be the First to Post Answer
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
please send me the code for multiplying sparse matrix using c
why do we use # in c-language?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What is && in c programming?
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
What are runtime error?
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
Write a program to swap two numbers without using third variable?
What is define directive?