Can the size of an array be declared at runtime?
No Answer is Posted For this Question
Be the First to Post Answer
What is define c?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Are negative numbers true in c?
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is file in c preprocessor?
how to find the given number is prime or not?
what is difference between C and C++
why should i select you?
Explain what is the general form of a c program?
Does c have enums?
What is void c?