Can you mix old-style and new-style function syntax?
No Answer is Posted For this Question
Be the First to Post Answer
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
What is the difference between typeof(foo) and myFoo.GetType()?
Explain how can I manipulate strings of multibyte characters?
What is the difference between malloc() and calloc() function in c language?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
What does char * * argv mean in c?
What do you mean by command line argument?
What type of function is main ()?
Tell me what is the purpose of 'register' keyword in c language?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }