i got 75% in all semester am i eligible for your company
No Answer is Posted For this Question
Be the First to Post Answer
Why shouldn’t I start variable names with underscores?
What does == mean in texting?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
what is stack , heap ,code segment,and data segment
disadvantages of realloc ?
how to find the kth smallest element in the given list of array elemnts.
Why clrscr is used after variable declaration?
What is graph in c?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
write a c program for greatest of three numbers without using if statment
What is hashing in c?
what is the difference between embedded c and turbo c ?