What is scanf_s in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we need a structure?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Ow can I insert or delete a line (or record) in the middle of a file?
what is the difference between c and java?
what is calloc and malloc?
What is the explanation for the dangling pointer in c?
what is the difference between global variable & static variable declared out side all the function in the file.
Write a program to print ASCII code for a given digit.
In C language what is a 'dangling pointer'?
What is volatile variable how do you declare it?
1. main() { printf("%d",printf("HelloSoft")); } Output?