What 'lex' does?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
Write a program that can show the multiplication table.
What is the difference between struct and union in C?
How can I write a function analogous to scanf?
How to delete a node from linked list w/o using collectons?
What is multidimensional arrays
Write a program on swapping (100, 50)
Which header file should you include if you are to develop a function which can accept variable number of arguments?
who is the founder of c
19 Answers College School Exams Tests, HP,
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
find largest element in array w/o using sorting techniques.
Explain is it valid to address one element beyond the end of an array?