What is the difference between volatile and const volatile?
No Answer is Posted For this Question
Be the First to Post Answer
how do you redirect stdout value from a program to a file?
Why is sprintf unsafe?
please give me some tips for the selection in TCS.
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Do you know the difference between malloc() and calloc() function?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
What is Bitwise Operator and how it works?
WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
8 Answers Carphone Warehouse, IBM, SAS,
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
What is the advantage of an array over individual variables?
What are preprocessor directives?
program to locate string with in a string with using strstr function