What do you mean by c what are the main characteristics of c language?
No Answer is Posted For this Question
Be the First to Post Answer
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
what is the different between data structure and data type?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
why do some people write if(0 == x) instead of if(x == 0)?
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
What is the translation phases used in c language?
All technical questions
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
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