What is difference between scanf and gets?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me about low level programming languages.
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Why flag is used in c?
How to avoid structure padding in C?
write a program to swap two numbers without using temporary variable?
How many levels of pointers have?
what is diff b/w huge & far & near pointer??
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
Write a program that accept anumber in words
What is static and auto variables in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is the correct code to have following output in c using nested for loop?