What are global variables?
No Answer is Posted For this Question
Be the First to Post Answer
why i join syntel?
23 Answers ABC, Syntel, TCS,
What is the difference between %d and %i?
How can I generate floating-point random numbers?
differentiate built-in functions and user – defined functions.
What is a spanning Tree?
what is void pointer?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What are # preprocessor operator in c?
Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.
what is the different between data structure and data type?
Write the Program to reverse a string using pointers.
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