Explain can you assign a different address to an array tag?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by keywords in c?
Why shouldn’t I start variable names with underscores?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What are loops in c?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Where are local variables stored in c?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
Is it possible to execute code even after the program exits the main() function?
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()